14 lines
		
	
	
	
		
			404 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			404 B
		
	
	
	
		
			Text
		
	
	
	
	
	
Add a task to taskwarrior via email. Makes use of the taskw Python bindings.
 | 
						|
 | 
						|
 http://taskwarrior.org
 | 
						|
 https://github.com/ralphbean/taskw
 | 
						|
 | 
						|
For use with procmail or maildrop. Example using maildrop's .mailfilter:
 | 
						|
 | 
						|
 | 
						|
  if ($SIZE < 8192 && /^From:.*myaddress@example.com/ && /^To:.*taskwarrior@/)
 | 
						|
  {
 | 
						|
    log "add task via mail2taskwarrior"
 | 
						|
    xfilter "devel/mail2taskwarrior/mail2taskwarrior"
 | 
						|
    exit
 | 
						|
  }
 |