• skip to content

PSCS Wiki

User Tools

  • Admin
  • Log In

Site Tools

  • Recent Changes
  • Media Manager
  • Sitemap
Trace: • Windows Server Port Conflicts • We installed a new router and now nothing works • Troubleshooter • Mappings • VPOP3.GetFolders Lua function • How to filter attachments • sending_different_users_mail_separately_using_mx_dns_overrides • Spamrules example - increase spam score for long sender domain • Mail Not Downloading From ISP • UserRuleConditions Replacement

end

Search

You can find the results of your search below.

Starts with
  • Exact match
  • Starts with
  • Ends with
  • Contains
@reference
  • Any namespace
Any time
  • Any time
  • Past week
  • Past month
  • Past year
Sort by hits
  • Sort by hits
  • Sort by last modified

Matching pagenames:

  • Batch file to end a database backup
  • Calendar database schema
  • Calendar.Calendars table
  • Calendar.Events table
  • Database query to list failed message sends
  • Mail Connectors -> Mail Senders
  • Database query to make LAN Forwarding immediately attempt to dequeue all pending messages
  • Send Admin Message
  • Mail Sender Advanced Relay Settings
  • Mail Sender Advanced Settings
  • SMTP Direct Sender Settings
  • Spamrules example - increase spam score for long sender domain
  • Spam Filter Rules: SendMessage
  • VPOP3.SendMessage

Fulltext results:

Spam Filter Rules: ForEach
14 Hits, Last modified: 7 years ago
l **ForEach** statements must be followed by an **EndFor** statement ^ Type ^ Description ^ Data ^ Ver... <code> ForEach URL FoundURLs Log "${FoundURLs}" EndFor #There should be a separate entry in the log f... ReplyAddr} ${Score} += 100 [whitelist] Break EndIf EndFor </code> The following example loops through all of the header lines of the message, and look
SMTP Server Lua Scripting
12 Hits, Last modified: 4 weeks ago
cessing each message line received by VPOP3 * **EndMessage()** - (v5+) called when the message terminator . has been received at the end of a message * **CheckRecipients()** - (v6.3+ Enterprise Only) called at the end of a message to check if recipients are allowed ... ients()** - (v6.3+ Enterprise Only) called at the end of a message to allow customised logging of recip
Password Strength Checking Script
11 Hits, Last modified: 7 years ago
assword' then return false else return true end end </code> A more complex example is: <code> blockedWords = {"password", "letmein", "computer"} minT... if Password == Username then return false end for _, value in pairs(blockedWords) do if ... owerPassword == value then return false end end hasDigit = 0 hasCaps = 0 hasLower = 0
Outgoing Message Scripting
10 Hits, Last modified: 15 months ago
if not SenderSubject then SenderSubject = "..." end end if string.upper(v[1]) == "TO" then SenderAddressTo = v[2] if not SenderAddressTo then SenderAddressTo = "..." end end if string.upper(v[1]) == "FROM" then -- SenderAddressFrom = "Alexander <alexander@my-sec
Misc -> Advanced Tab
7 Hits, Last modified: 7 years ago
x problems with sending mail. ====Allow Any Line Endings==== In email, all lines must strictly end with a CR/LF pair (ASCII codes 13 + 10). Any other combi... rs (CR, LF, or LF/CR) are not interpreted as line endings. Usually VPOP3 will follow the standards, ho... o follow the standards, and to use incorrect line endings. In this case, you can check this option to t
Spam Filter Rules: IfMatch
7 Hits, Last modified: 7 years ago
*IfMatch** statement must be terminated with an **EndIf** and may contain an **Else** statement, just l... wiki>^</nowiki> characters match at the start and end of a line rather than the start and end of the entire data | ^n |An empty string is not considered to... g | ^D |The dollar character matches only at the end of the search string. Without this, it can also m
Lua SMTP Relay Control
7 Hits, Last modified: 7 years ago
time.hour < 19) then actions["SkipSend"] = 1; end; if size > 5000000 then actions["Priority"] = 1; end; return actions; end; </code> As an example, if you want messages over 50000 bytes to go through ma... senderid ~= 0 then actions["SkipSend"] = 1; end; else if senderid ~= 1 then actions["SkipSe
Batch file to end a database backup
6 Hits, Last modified: 7 years ago
======Batch file to end a database backup====== VPOP3 runs pg_dump.exe to perform the regular database backups. Ending this process through Task Manager will not end the back-end database processes creating the backup data. This batch file will do it for you. Save th
Spam Filter Rules: BulkScan
5 Hits, Last modified: 7 years ago
arch specifier 1> <search specifier 2> #... EndBulkScan The <search specifier> requires a data p... of the search specifiers between the BulkScan and EndBulkScan statements. Where there is a match, the v... **BulkScan** statement must be terminated with **EndBulkScan** * No statements may be included between **BulkScan** and **EndBulkScan**, with the exception of [[spamrules_stat
Spam Filter Rules: IfInBag
5 Hits, Last modified: 7 years ago
l **IfInBag** statements must be followed by an **EndIf** statement *You may optionally include an **... example <code> IfInBag mybag "value" # Statements EndIf </code> Using an **Else** statement <code> IfI... nBag mybag "value" # Statements Else # Statements EndIf </code> Using a regular expression <code> IfInBag mybag "/@domain\.com/i" # Statements EndIf </code> Using a wildcarded expression <code> I
Spam Filter Rules: If
5 Hits, Last modified: 7 years ago
* All **If** statements must be followed by an **EndIf** statement * You may optionally include an *... amples===== <code> If ${score} < 100 # Statements EndIf </code> Note that it is not possible to combin... re} < 100 If ${subject} = "Hello" # Statements EndIf EndIf </code> Using the **Else** statement <code> If ${score} < 100 # Statements Else # Statements
POP3 Client Lua Scripting
5 Hits, Last modified: 22 months ago
the remote server,just before it saves it. * **EndMessage()** - called when VPOP3 has finished downl... ctions need to be performed on the message. * **End()** - called at the end of the POP3 session. =====ProcessMessage()===== ''ProcessMessage("<mailfrom>... rt of the message where this section starts * End number - the offset from the start of the message
Spam Filter Rules: *IFSUPPORT
4 Hits, Last modified: 7 years ago
**IFSUPPORT** statements must be followed by a ***ENDIF** statement * The statements between the ***IFSUPPORT** and the corresponding ***ENDIF** statement are not parsed, so will not cause s... =====Example===== <code> *IFSUPPORT IfInBag IfInBag MyBag "value" # Statements EndIf *ENDIF </code>
User Routing Script
4 Hits, Last modified: 2 years ago
localdomain%.com$") then ShouldForward = false; end </code> ====If the sender is user@domain.com for... m"; UseForwards = true; ShouldForward = true; end </code> ====If the time is currently in the morn... 12 then Assistants = "otheraddress@example.com" end </code> ====If the current time is between 10:00... 0") then Forwards = "person@mycompany.com"; UseForwards = true; ShouldForward = true; end </code>
Signature Script
4 Hits, Last modified: 7 years ago
"<p>This is the HTML signature for domain1</p>" end elseif string.find(Sender, "@domain2%.com$") the... "<p>This is the HTML signature for domain2</p>" end end end </code> If you need, we can produce a script for you, but there would be a cost for this - contac
Spam Filter Rules: Goto
4 Hits, Last modified: 7 years ago
Settings -> Attachment Processing
4 Hits, Last modified: 7 years ago
Spam Filter Rules: ZipContentsFull
3 Hits, Last modified: 7 years ago
Use the spam filter scripting to add random text to the subject on incoming messages
3 Hits, Last modified: 7 years ago
Increase the spam score for header marker
3 Hits, Last modified: 5 years ago
Spam Filter Rules: ZipContents
3 Hits, Last modified: 7 years ago
Spamrules example - increase spam score for long sender domain
3 Hits, Last modified: 7 years ago
Spam Filter Rules: ZipCount
3 Hits, Last modified: 7 years ago
Increase the spam score for subject marker
3 Hits, Last modified: 7 years ago
Increase the spam score for certain recipients
3 Hits, Last modified: 7 years ago
Status
3 Hits, Last modified: 7 years ago
Reset Message Folder Counts
3 Hits, Last modified: 7 years ago
User Manager Script
3 Hits, Last modified: 14 months ago
IMAP4 Server Scripting
3 Hits, Last modified: 7 years ago
Calendar.Events table
3 Hits, Last modified: 7 years ago
Spamrules example - increase spam score if there are many links in the email
3 Hits, Last modified: 7 years ago
Spam Filter Rules: Break
2 Hits, Last modified: 7 years ago
Spam Filter Rules: AddHeader
2 Hits, Last modified: 7 years ago
Spam Filter Rules: GetDecodedSection
2 Hits, Last modified: 7 years ago
Spam Filter Rules: GetSectionEncoding
2 Hits, Last modified: 7 years ago
Spam Filter Rules: GetSectionMD5
2 Hits, Last modified: 7 years ago
Archive Script
2 Hits, Last modified: 2 years ago
Use the spam filter scripting to add fixed text to the subject on incoming messages
2 Hits, Last modified: 4 years ago
SMTP Direct Sender Settings
2 Hits, Last modified: 7 years ago
Lua SMTP MX Control
2 Hits, Last modified: 23 months ago
Virus Scan Filter Scripting
2 Hits, Last modified: 7 years ago
Copy SMTP Rules - Database Query
2 Hits, Last modified: 7 years ago
Autoresponder scripting
2 Hits, Last modified: 5 days ago
Spam Filter Rules: IfLocalAddress
2 Hits, Last modified: 7 years ago
Spam Filter Rules: RemoveBayesSpam
1 Hits, Last modified: 7 years ago
Status Monitor (port 5109) protocol
1 Hits, Last modified: 6 years ago
Spam Filter Rules: RemoveBayesHam
1 Hits, Last modified: 7 years ago
Useful other things
1 Hits, Last modified: 7 years ago
VPOP3.GetMessageLines
1 Hits, Last modified: 7 years ago
VPOP3.MessageSeek
1 Hits, Last modified: 7 years ago
Allow messages through from a specific IP address
1 Hits, Last modified: 3 years ago
Spam Filter Rules: DNSBL
1 Hits, Last modified: 5 years ago
Spam Filter Rules: AddBayesSpam
1 Hits, Last modified: 7 years ago
Spam Filter Rules: AddBayesHam
1 Hits, Last modified: 7 years ago
Attachment Extraction Scripting
1 Hits, Last modified: 7 years ago
Spam Filter Rules: Comments
1 Hits, Last modified: 7 years ago
Spamfilter Script Configuration tab
1 Hits, Last modified: 7 years ago
SMTP Server -> Spam Reduction
1 Hits, Last modified: 7 years ago
Mail Connectors -> Mail Senders -> SMTP Direct
1 Hits, Last modified: 7 years ago
Send Admin Message
1 Hits, Last modified: 7 years ago
msgaudit Database table
1 Hits, Last modified: 7 years ago
Management Scripting
1 Hits, Last modified: 7 years ago
Mail Connectors -> Mail Senders
1 Hits, Last modified: 7 years ago
Error Handling Scripting
1 Hits, Last modified: 19 months ago
DMARC Reporter Script
1 Hits, Last modified: 19 months ago
Settings -> Database
1 Hits, Last modified: 7 years ago
Spamfilter White/Blacklists
1 Hits, Last modified: 7 years ago

Page Tools

  • Show page
  • Old revisions
  • Backlinks
  • Back to top
Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki