This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Pages: [1]
1
E-Mail / Re: No HTML for autoresponder
« on: August 04, 2022, 04:53:57 PM »
I got a solution to send auto-responses in HTML and also send text with spelling accents
cp /etc/postfix/vacation_class.php /etc/postfix/vacation_class.bak
nano /etc/postfix/vacation_class.php
Before:
After
This is just an adaptation! The auto-response feature needs some attention from the developers, It has a lot of bugs...
cp /etc/postfix/vacation_class.php /etc/postfix/vacation_class.bak
nano /etc/postfix/vacation_class.php
Before:
Code: [Select]
$content_type = property_exists($this->reply,'ishtml') && $this->reply->ishtml == 1 ? 'text/html' : 'text/plain';
$headers .= 'Content-type: ' . $content_type . '; charset=' . $this->reply->charset . "\r\n";
After
Code: [Select]
$content_type = property_exists($this->reply,'ishtml') && $this->reply->ishtml == 1 ? 'text/html' : 'text/html';
$headers .= 'Content-type: ' . $content_type . '; charset=utf-8\r\n';
This is just an adaptation! The auto-response feature needs some attention from the developers, It has a lot of bugs...
2
E-Mail / Re: No HTML for autoresponder
« on: August 04, 2022, 12:45:02 PM »
I have the same problem here.
bobster's solution didn't work here. Does not appear to check "Use HTML in message "
Does anyone have another solution?
bobster's solution didn't work here. Does not appear to check "Use HTML in message "
Does anyone have another solution?
3
Installation / Re: where can i see cwp installation erros log ?
« on: June 05, 2022, 02:08:06 PM »
Hi! i have the same problem here.
Has anyone found a solution?
Has anyone found a solution?
Pages: [1]