a little note...
as it's now, sender's nick and alias is switched in the sent message... i mean that if succo with alias
succo1@mydomain.com sends a message, it's received as coming from succo1 <succo@mydomain.com>
to solve this you have to edit (and switch) $user['username'] and $user['vbms_alias'] in vbms_functions_api.php
so, find
PHP Code:
$object->set_from($user['vbms_alias'], $user['username']);
and subst it with
PHP Code:
$object->set_from($user['username'], $user['vbms_alias']);
i didn't go much deeper in the api, and this 'simple' solution seems strange to me as set_from is defined ($alias, $username) but strange as is, it works
Quote:
Originally Posted by mindcry
* The following aliases could not be translated from usernames or address book entries: name <name@gmail.com>
|
it happens just the same to me, and i don't think it has been solved yet