Hi there, I'm having a problem to fill the "Reply-To" and "Bcc" entries under Identities in the way I need to.
Simply said, I'd just like to enter a) more than just one address , and b) to enter them in the format: Real Name <[email protected]> Real Name <[email protected]>, Real Name <[email protected]> Unfortunately both scenarios don't work, as RC is complaining about an invalid address (although the address(es) and their format are perfectly valid). Entering just two comma-separated addresses (without real names) leads to the same result. I've managed to solve the problem partially with this quick hack in save_identity.inc: -------------------------------------------------------- // Validate e-mail addresses - foreach (array('email', 'reply-to', 'bcc') as $item) { + foreach (array('email') as $item) { -------------------------------------------------------- (I know that an array with just one item doesn't look very smart, but as a PHP noob and former TP developer this was the easiest way for me to do it without having to deal with syntax problems.) Now I can at least enter multiple addresses in Reply-To and Bcc this way: [email protected], [email protected] But as soon as I add the real names in the format above, all I'm getting after clicking the Save button is: Real Name, Real Name Addresses are stripped entirely. Hmmm... For the moment I'd be happy with a temporary hack that will just disable ANY address validation at these two particular places - but without breaking anything somewehere else. I wasn't able to find a way myself (especially the function rcube_idn_to_ascii is called that often recursively that I got totally lost). I desperately need this for business purposes. TIA for any help, -- Michael Heydekamp Co-Admin freexp.de Düsseldorf/Germany _______________________________________________ Roundcube Users mailing list [email protected] http://lists.roundcube.net/mailman/listinfo/users
