hope you guys can help
i have remote users using ms outlook at their homes with email accounts from their company (sme is the company mail server)
the users also have computers at the office using ms outlook
they need to have their sent items from home to also be on the office ms outlook profile
how do i get this done?
please help
You can do this for sent items and trash. Look at /home/httpd/html/horde/imp/config/prefs.php. Create custom-templates for one or both of the below lines.
//135sent_mail_folder
// sent mail folder
$_prefs['sent_mail_folder'] = array(
// The mailbox value must be encoded in the UTF7-IMAP charset (see RFC
// 3501 [5.1.3]). For Exchange, uncomment the entry below and remove the
// default value entry.
'value' => 'Sent Items',
// 'value' => _("Sent"),
// value below for SME Server that is consistent from day one
//'value' => 'sent-mail',
'locked' => false,
'shared' => false,
'type' => 'implicit');
//165trash_folder
// trash folder
$_prefs['trash_folder'] = array(
// The mailbox value must be encoded in the UTF7-IMAP charset (see RFC
// 3501 [5.1.3]). For Exchange, uncomment the entry below and remove the
// default value entry.
// 'value' => 'Deleted Items',
//'value' => _("Trash"),
// Value below for SME Server so that it's consistent from the beginning
'value' => 'trash',
'locked' => false,
'shared' => false,
'type' => 'implicit');
After you've created your custom-templates,
expand-template /home/httpd/html/horde/imp/config/prefs.php
This will only take effect for new users added to the system because they won't have any setting yet saved, so you could make your changes, create a new user, send a test email so your sent folder is created and make sure it's seen with webmail and outlook.
For users that have already logged in and have settings saved in mysql, you'll need to login to webmail as the user and choose options, mail, personal information, and change the sent mail folder to what outlook is using. For trash settings, use deleting and moving messages and change the trash location.
Logout, then login to webmail, send email and check new sent folder, you should see what you sent, as long as you are saving sent messages. If this new location is the outlook location as well, then you should see all of the outlook sent mail. You will then need to move the items from your old webmail sent folder to this one for each user initially. Same for trash.
After that, users using webmail or outlook should see the same sent mail and/or deleted items. I've done this and it seems to work well in my situation, and like I stated, it's just a little tedious to set up for already established users.
Good Luck,
John