Forum OpenACS Development: Re: Forums "Out of Office"

Collapse
3: Re: Forums "Out of Office" (response to 1)
Posted by Malte Sussdorff on
Hi Vinod (et. al). Before I try to understand the procmail filters, could you translate them into "regexp", so I could add it as filters into acs_mail_lite::load_mails as this is much more convenient than having to install procmail and maintaining all of it.

My Idea was to use something like this on the subject:

set no_callback_p 0
set no_callback_p -nocase [regexp {.*Out of Office$} $subject]
set no_callback_p -nocase [regexp {.*Out of Office Autoreply$} $subject]
set no_callback_p -nocase [regexp {.*out of the office$} $subject]

aso. for all your examples. But it this acutally right (to assume that "out of office" will come at the end..) ?

How about international E-Mails? Are they using out of office as well?

Should all auto replies be considered bounces? If yes, can't we just say we check for mailer daemon instead of the various forms of "Out of Office" in the subject line?