Changes between Initial Version and Version 1 of how-to/postfix/auto-responder


Ignore:
Timestamp:
Jul 21, 2014, 2:59:49 PM (10 years ago)
Author:
Ross
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • how-to/postfix/auto-responder

    v1 v1  
     1= Auto-responder =
     2
     3Our auto-responder uses a sqlite database `~/.red.auto_responder.db` to log auto-response sent messages.  The auto-responder only sends messages to a given email address once a week.  This can be confusing to members trying to test their auto-response messages as well as for general testing.  Below are two approaches to run tests on an auto-response message.
     4
     5This approach will delete the log message from the sqlite database so that you can send another auto-response message.
     6{{{
     7su - <username>
     8sqlite3 ~/.red.autoresponder.db
     9delete from log
     10}}}
     11
     12This approach uses red to remove the message from the log.
     13{{{
     14su - <username>
     15cat ~/Maildir/cur/themessageyousent | /usr/local/share/red/node/sbin/red-auto-responder -d
     16}}}
     17
     18== Auto-responder relay ==
     19
     20Here we could use some description about how the auto-responder actually handles relaying the message...