Differences between revisions 5 and 6
Revision 5 as of 2007-05-24 14:21:21
Size: 863
Editor: RainerSigl
Comment:
Revision 6 as of 2007-05-25 08:16:01
Size: 1560
Editor: RainerSigl
Comment:
Deletions are marked like this. Additions are marked like this.
Line 5: Line 5:
 * storing or throwing away tagged Spam messages depending on the score  * storing or dropping tagged Spam messages depending on the score
Line 7: Line 7:
==== Calling the Editor for Filters ==== == Calling the Editor for Filters ==
Line 9: Line 9:
Login in [https://mpemail.mpe.mpg.de/tpl] and choose menue 'Edit Filter' Login in [https://mpemail.mpe.mpg.de/tpl mpemail user interface] and choose menue 'Edit Filter'
Line 17: Line 17:

[[PgSQLQuery(mydb, SELECT replace(english_text,'\n','\t') FROM texts where id='filter')]]
The standard filter is taken automatically if a new user is created. Take this contents as a template to construct your personal filter.
Line 21: Line 20:
[[PgSQLQuery(mydb, SELECT english_text FROM texts where id='filter')]]

further information for writing filters can be found in [http://www.exim.org/exim-html-current/doc/html/filter.html exim filter specs]
Line 22: Line 25:
 * $header_from
 * $header_subject
 * $sender_address The sender address that was received in the envelope of the message
 * $reply_address The contents of the Reply-to: header, if the message has one; otherwise the contents of the From: header.
 * $return_path The return path – that is, the sender field that will be transmitted as part of the message’s envelope if the message is sent to another host.

[[BR]]

Configure User specific Filters for MPE's Mail Services

Each user has the opportunity to preprocess his incoming mail stream by a filter. Usual applications are:

  • putting mails from certain senders or with special subjects in a special folder
  • storing or dropping tagged Spam messages depending on the score

Calling the Editor for Filters

Login in [https://mpemail.mpe.mpg.de/tpl mpemail user interface] and choose menue 'Edit Filter'

Remark:

  • Mailfolders are generated automatically
  • After finish editing a filter a syntax check is performed. If any errors a error message will be displayed and the old filter is not overwritten. The editor keeps your edited product.

the standard filter as a example

The standard filter is taken automatically if a new user is created. Take this contents as a template to construct your personal filter.

PgSQLQuery(mydb, SELECT english_text FROM texts where id='filter')

further information for writing filters can be found in [http://www.exim.org/exim-html-current/doc/html/filter.html exim filter specs]

commands and variables

  • $header_from
  • $header_subject
  • $sender_address The sender address that was received in the envelope of the message
  • $reply_address The contents of the Reply-to: header, if the message has one; otherwise the contents of the From: header.
  • $return_path The return path – that is, the sender field that will be transmitted as part of the message’s envelope if the message is sent to another host.

BR

IT: MailConfigFilters (last edited 2009-07-15 14:34:35 by localhost)