Difference between revisions of "Talk:EmailToWiki.pl"

From Organic Design wiki
m (Event driven installation: wrong conditional syntax)
m (Event driven installation)
Line 29: Line 29:
 
This would allow the mails to be checked as they come in and if destined for a wiki would be routed there straight away instead of going to the usual mail directory for storage.
 
This would allow the mails to be checked as they come in and if destined for a wiki would be routed there straight away instead of going to the usual mail directory for storage.
  
The router should be placed after the spam router so that we can place a condition in it to only match non-spams which will greatly cut down on the processing.
+
The following router configuration section should be placed after the spam router in ''/var/www/exim4/exim4.conf.template'' because it exhibits a condition specifying to send only non-spams to the ''EmailToWiki.pl'' script which cuts down greatly on the processing required.
 
 
The router section to add after the ''spam_check'' router in ''/var/www/exim4/exim4.conf.template'' is as follows:
 
 
{{code|<pre>
 
{{code|<pre>
 
# 860: EmailToWiki router
 
# 860: EmailToWiki router

Revision as of 01:56, 6 January 2009

EmailToWiki.pl is called from crontab and has one parameter specifying the name of a configuration file which should reside in the same directory as the script. The config file is eval'd and should set the following variables:

{{{1}}}

Event driven installation

The biggest problem with this extension is the inefficient polling of the POP box which makes it unresponsive and consumes unnecessary resources on a regular basis.

This could be configured in a more event-driven way by integrating with the exim4 router configuration. Specifically the queryprogram router would be used. The program should return REDIRECT :blackhole: if the message matches any of its rules and is destined for the wiki, or PASS if not so it can be processed by the next router instead.

This would allow the mails to be checked as they come in and if destined for a wiki would be routed there straight away instead of going to the usual mail directory for storage.

The following router configuration section should be placed after the spam router in /var/www/exim4/exim4.conf.template because it exhibits a condition specifying to send only non-spams to the EmailToWiki.pl script which cuts down greatly on the processing required.

# 860: EmailToWiki router
email_to_wiki:
	driver = queryprogram
	command = /var/www/extensions/EmailToWiki/EmailToWiki.pl /var/www/EmailToWiki.conf
	command_user = Debian-exim
	condition = "${if !def:h_X-Spam-Flag: {1}{0}}"

See also