Fulltext results:
- Autoresponder Commands
- different responses based on the incoming message subject. You can specify them as: * **[Section: <subject text>]** * **[Default]** * **[All]** If no section... defined, then **[All]** is assumed. **[Section: <subject text>]** sections will be sent if the subject of the incoming message contains the <subject text> (case in
- Outgoing Message Scripting
- ge(AuthenticatedSender, ReturnPath, CreationDate, Subject, SenderIPAddress, FileLength, Priority, Headers, ... message was created - as ''YYYYMMDDHHMMSS''. * Subject - The subject of the message. * SenderIPAddress - The IP address of the message sender (if generated fro... ge(AuthenticatedSender, ReturnPath, CreationDate, Subject, SenderIPAddress, FileLength, Priority, Headers)
- Autoresponder scripting
- inator** - the originator email address * **OrigSubject** - the original subject * **Date, LongDate, ShortDate, Time, TimeNoSecs** - the current date & time in ... en called, the //Keep, CheckLog, Sender, ReplyTo, Subject, SubjectPrefix, AppendMsg, To, CopyTo// and //Attachments// fields of the Autoresponder defined in the Lua
- Autoresponder
- revent "autoresponder loops") * **Autoresponder Subject Prefix/Subject** - this indicates modifications to the original message subject. If you choose **Subject Prefix** then the specified text will be prepended to the start of the original s
- Find a message
- ======Find a message====== If you know the subject of a message, you can search the entire message store for messages with this subject. Go to Settings → Database → Query Alternativel... n, type <code> SELECT messagetime, internaltime, subject, fromaddr, fromname, tolist, attachments, spam, s... INNER JOIN users.users ON userid=usernumber WHERE subject ilike '%<subject to search for>%'; </code> Repla
- ListServer Commands
- on the particular mailing list's settings. =====Subject Commands===== These commands can be sent in the message subject. If these are used, then the remainder of the mes... scribe=== (Can be abbreviated to **sub**) Send a subject of **subscribe listname**. For example Subject: subscribe offers-list n.b. Use the //list name//, not
- Settings -> Attachment Processing
- <**Header field**>: <**Data to match**>''. e.g. ''Subject: Annual accounts''.\\ You may either use wildcard... or the **Data to match** part of the rule. e.g. ''Subject: Annual accounts for*'', or ''Subject: /Annual accounts for (Your main business|Your other business)/i'' ... l be replaced by a dynamic value, such as: * **%subject%** - //The message subject, but with some charact
- Users.Autoresponders table
- the autoresponse's reply-to address should be * subject - text indicating what the autoresponse's subject should be (blank to use the original message's subject) * subjectprefix - text indicating a prefix to add to the start of the autoresponse's subject if the sub
- SMTP Server Lua Scripting
- ssMessage()===== ''ProcessMessage("<mailfrom>", "<subject>", <recipient list>, <current actions>, <message ... * <mailfrom> is the SMTP 'MAIL FROM' address * <subject> is the message subject line * <recipient list> is a table containing a list of the recipient email addr... ", "<Authenticated Sender>", "<Sender Address>", "Subject", <locally sent>, <message size>'' This function
- Monitor Scripting
- Out(sender, authenticated_sender, recipient_list, subject) or MonitorInternal(sender, recipient_list, subject) or MonitorIncoming(sender, recipient_list, subject) * **recipient_list** is a list of target email a... Out(sender, authenticated_sender, recipient_list, subject, size, attachments, ToRecipients, CcRecipients, B
- Spam Filter Rules
- =====Examples===== * [[spamrules_addrandomtexttosubject|Add random text to subject on incoming messages]] * [[spamrules_addfixedtexttosubject|Add fixed text to subject on incoming messages]] * [[spamrules_checkrecipient|Increase spam score for sp
- Use the spam filter scripting to add fixed text to the subject on incoming messages
- he spam filter scripting to add fixed text to the subject on incoming messages====== This needs VPOP3 versi... This script allows you to add fixed text to the subject an incoming message, eg so that users can see tha... cessing of locally sent messages) <code> IfMatch subject /\[external\]/ # modification already exists Else AddHeader "Subject: [external] ${Subject}" EndIf </code>
- Use the spam filter scripting to add random text to the subject on incoming messages
- e spam filter scripting to add random text to the subject on incoming messages====== This needs VPOP3 versi... xt ''[XXX-99999]'' added to an incoming message's subject if it does not already exist. Some people want th... sages) <code> IfMatch rcpt /^support$/i IfMatch subject /\[[A-Z]{3}-\d{5}\]/ # reference already exists ... f} .= ${T} Random 0 9 T ${Ref} .= ${T} AddHeader "Subject: [${Ref}] ${Subject}" EndIf EndIf </code>
- Spam Filter Rules: AddHeader
- r the -/+ above) with "{"<username>"}" (eg ''{bob}Subject: Bob's new subject'' ) it will only be added to the headers when placed into that user's mailbox * If yo... ft in place * =====Examples===== Changing the subject header <code> AddHeader "subject: VPOP3SPAM ${Subject}" </code> Removing a header line, by not setting a
- Spam Filter Rules: IfMatch
- the same task as **body**, but also searches the subject line |2.1.7 | ^anytexta |This performs the same task as **bodya**, but also searches the subject line |2.1.7 | ^htmlsource |This searches the raw... case insensitive regular expression search of the Subject line of the message header to see if it contains the text **hello** anywhere. <code> IfMatch subject "/.*hello.*/i" # Statements EndIf </code> The ex