ispCP - Board - Support
Editing vacation autoreply message - Printable Version

+- ispCP - Board - Support (http://www.isp-control.net/forum)
+-- Forum: ispCP Omega Development Area (/forum-1.html)
+--- Forum: Tickets / Roadmap / Timeline (/forum-50.html)
+--- Thread: Editing vacation autoreply message (/thread-15851.html)



Editing vacation autoreply message - Qwerty256 - 02-26-2012 03:05 AM

You have misspeling there:

gui/client/mail_autoresponder_edit.php

line:38
IS: $template = 'mail_autoresponder_enable.tpl';
SHOULD BE: $template = 'mail_autoresponder_edit.tpl';

line: 64
IS: 'TR_ENABLE_MAIL_AUTORESPONDER' => tr('Edit mail auto responder'),
SHOULD BE: 'TR_EDIT_MAIL_AUTORESPONDER' => tr('Edit mail auto responder'),


Smile
and /var/www/ispcp/gui/client/mail_edit.php

line: ~207 you have:
Code:
$tpl->assign(
                                array(
                                        'ACTION'                                => 'update_pass,update_forward',
                                        'FORWARD_MAIL'                  => true,
                                        'FORWARD_MAIL_CHECKED'  => $cfg->HTML_CHECKED,
                                        'FORWARD_LIST_DISABLED' => 'false'
                                )
                        );
and in here should be
'NORMAL_MAIL' => true,
because we are editing normal-email as weel Smile


and by the way, if you do edit email, and remove forwards, you have no option to switch back to forward email.. when i fix it i will paste it here