mirror of
https://github.com/opensolutions/ViMbAdmin.git
synced 2026-04-26 08:45:54 +03:00
[GH-ISSUE #164] New TLD Support (Alias) #131
Labels
No labels
bug
feature
feature
improvement
improvement
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/ViMbAdmin-opensolutions#131
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @s256 on GitHub (Feb 7, 2016).
Original GitHub issue: https://github.com/opensolutions/ViMbAdmin/issues/164
It's not possible to add multiple recipients (Goto) to an Alias if it's a new TLD. In my case .business .
Domain was added successfully. One Alias is also not a problem. Just multiple recipients.
@s256 commented on GitHub (Feb 24, 2016):
I'm correcting: If the TLD part is longer than 4 Characters. I assume AliasController.php is the responsible file. First I thought it's the Zend Framework. But after removing
!Zend_Validate::is( "{$address}", 'EmailAddress', array( 1, null ) )nothing changed.I'm not sure if it's the correct file, but it was the only one I could finde the exact error message.
I'm not a programmer, just an admin. Sorry :/
Line 428 in AliasController.php
// is the alias valid (allowing for wildcard domains (i.e. with no local part) if( $form->getValue( "local_part" ) && !Zend_Validate::is( "{$address}", 'EmailAddress', array( 1, null ) ) ) { $form->getElement( 'local_part' )->addError( _( 'Invalid email address.' ) ); return false; }@SE0N commented on GitHub (Mar 7, 2016):
Maybe this helps: https://github.com/opensolutions/ViMbAdmin/issues/151
At least this was what helped me for the new TLDs
@barryo commented on GitHub (Apr 2, 2016):
Seems to work fine now. I'll create a new release shortly.