Fulltext results:
- Mail Collectors
- ner in the cycle than others. If you have, say, 10 Collectors which each take 1 minute and are scheduled every 10 minutes, each with the priorities 1-10, then the 'priority 1' Collector will be processed at, say, 10:00, 10:10, 10:20 etc. The 'priority 5' Collector
- Autoresponder Commands
- ill work between the two dates, eg **<Valid:1/2/2010-10/2/2010>** to make the autoresponder work between 1st February 2010 and 10th February 2010 (inclusive), assuming the
- Mail Connectors -> Connector Schedule
- ecting every 1 minute, and you have it set to use 10 connections, it is entirely possible the later co... o connect every minute, but this option is set to 10 minutes, then VPOP3 will only connect every 10 minutes, rather than every minute. Use **0** (zero) t... nnect every 5 minutes, and the time is changed to 10:00, VPOP3 will now connect at 10:05 if this optio
- Users.AutoresponderConditions table
- field For instance, a datetime range of 2012-03-10 10:00:00 to 2012-03-17 15:00:00 will act for the whole time period from 10 am on 10th March 2012 to 3 pm on 17th March 2012, but a date range of 2012-03-10 to 2012-03-17 and a time range of 10:00:00 to 15:
- Mail Sender Advanced Settings
- e the last number So, a Sender Retry setting of '10,30' means that VPOP3 will retry a message 10 minutes after first trying to send it. If that fails as ... st retry or two set to a short delay such as 5 or 10 minutes. This will mean that [[wp>greylisting|gre... not slow down other messages. So, for instance, **10,10,30,60,60,180** could be a sensible retry schem
- Lua SMTP MX Server Rules
- this destination =====CheckServer===== (VPOP3 7.10 and later) ''CheckServer("<Domain>", "<MX Server... It will also hold the message in the Outqueue for 10 minutes, so it isn't immediately resent. (If it is attempted after 10 minutes, and there are still lots of recent failu... mber(x[1].cnt) > 5 then return false, 10; end end end </code> =====FinalOv
- Settings -> Attachment Processing
- <code>* *.*</code> |Files with at least 10 consecutive spaces in the filename. There are few legitimate reasons for using 10 consecutive spaces, so it is likely to be an expl
- Find biggest messages
- ======Find biggest messages====== To find the 10 biggest messages in your VPOP3 message store: Go to... ON u.usernumber=f.userid ORDER BY size DESC LIMIT 10; </code> N.B. VPOP3 does not need to be stopped
- Management Scripting
- ore continuing, so if the '1 minute' script takes 10 minutes to run, it will run it again soon after the first one has completed, rather than having 10 copies of the script running at once.
- Security Settings -> Intrusion Protection Tab
- tes, and the **failed login threshold** is set to 10, then if there are at least 10 failed logins from a certain IP address within the past 30 minutes, th
- SMTP Direct Sender Settings
- you don't specify a priority, then the priority '10' is used. - Check message size - specify ''$siz... s VPOP3 how many messages it should send at once. 10 is a good starting number. If you set it too high
- Spamrules example - increase spam score if there are many links in the email
- ks - in this case we'll say if the email contains 10 or more links. Note that we do not necessarily re... ${URLCount} += 1 EndFor If ${URLCount} >= 10 ${Score} += 50 [ManyLinks] EndIf When... lt threshold for messages to be marked as spam is 100) - you can alter the 50 in the ${Score} += line
- Spam Filter Rules: BulkScan
- for 'friend', and if it contains it, it will add 10 to the ${Score} variable, with any appropriate [[... ulkScan Score [LoadsADosh] Subject /.*friend.*/i 10 Body /.*\$[0-9\.]+\s*million.*/i 50 EndBulkScan
- Spam Filter Rules: Escape
- =====Example===== <code> ${myvar} = "This costs $10.00" Escape myvar # ${myvar} is now "This costs \$10\.00" </code>
- Spam Filter Rules: Random
- rs are swapped =====Example===== <code> Random 5 10 val #${val} contains one of 5, 6, 7, 8, 9, 10 </code>