4 messages in net.sourceforge.lists.courier-usersRe: [courier-users] autoreply with an...
FromSent OnAttachments
ScottAug 27, 2007 11:41 pm 
Sam VarshavchikAug 28, 2007 3:59 am 
Jay LeeAug 28, 2007 4:08 am 
ScottAug 28, 2007 11:27 am 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:Re: [courier-users] autoreply with an html messageActions...
From:Scott (cour@troutpocket.org)
Date:Aug 28, 2007 11:27:30 am
List:net.sourceforge.lists.courier-users

Sam Varshavchik wrote:

Scott writes:

I need to send an autoreply in html format with a specific font and formatting. I first composed the html email in Thunderbird and saved it as a draft. Then I cut out the headers and saved it as a file. I uploaded that file in the sqwebmail autoreply interface, created the rule, and tested. Obviously it didn't work. I suspect I need to add a header indicating an encoding type (which wasn't present in the saved version).

Anyone have experience sending html autoreplies care to share their method? I'm

sqwebmail-generated autoreplies are always plain text.

Ha, that explains why my html formatting was coming through as plain text.
Instead I copied the html formatting to a file and modified my .mailfilter as such:

if ((1)) { AUTOREPLYFROM=$FROM `/usr/lib/courier/bin/mailbot -A "X-Sender: $FROM" -A "Content-Type:
text/html; charset=ISO-8859-1" -A "Content-Transfer-Encoding: 7bit" -A "From:
$AUTOREPLYFROM" -m "./Maildir/autoresponses/reply" $SENDMAIL -t -f ""` }

Thanks for the tip.