• skip to content

PSCS Wiki

User Tools

  • Admin
  • Log In

Site Tools

  • Recent Changes
  • Media Manager
  • Sitemap
Trace: • How do I write an email to technical support? • Message Monitoring • How to create an SSL Certificate • Spamfilter Rule Weights • How to move VPOP3 V5+ to a new folder • Security Settings -> Intrusion Protection Tab • Spam Filter Rules: IfMatch • Data stream contained NUL character • Error Message Handling • How To Setup VPOP3 Service Security

code

Search

You can find the results of your search below.

Exact match
  • 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:

  • Spam Filter Rules: GetDecodedSection

Fulltext results:

Settings -> Attachment Processing
14 Hits, Last modified: 7 years ago
filtered filenames=== ^Pattern ^Explanation ^ |<code>*.vbs</code> |Files with a **.vbs** extension will typically run as Visual Basic Scripts. | |<code>*.{????????-????-????-????-????????????}</code> |Filenames ending in a GUID (Globally Unique Identifie
Spam Filter Rules: ForEach
10 Hits, Last modified: 7 years ago
s}' variable. This is then sent to the log file. <code> ForEach URL FoundURLs Log "${FoundURLs}" EndFor... e a separate entry in the log file for each URL </code> The following example loops through each email ... is then checked against the sender's whitelist. <code> ForEach Addr Reply-To ReplyAddr IfMatch WhiteLi... Score} += 100 [whitelist] Break EndIf EndFor </code> The following example loops through all of the
Spam Filter Rules: Reject
8 Hits, Last modified: 7 years ago
age | The **Reject** statement requires an error code/text string, in the format Reject <error string... rrent SMTP message with the specified SMTP result code. Use a 4xx error code (eg 450) to reject the message temporarily, or a 5xx error code (eg 550) to reject the message permanently. If a
User Routing Script
8 Hits, Last modified: 2 years ago
d messages from *@localdomain.com addresses==== <code> --Don't forward any messages from any *@localdom... omain%.com$") then ShouldForward = false; end </code> ====If the sender is user@domain.com forward to person@mycompany.com==== <code> --If the sender is user@domain.com forward to p... UseForwards = true; ShouldForward = true; end </code> ====If the time is currently in the morning, ov
Spam Filter Rules: IfInBag
8 Hits, Last modified: 7 years ago
ed expression =====Examples===== Basic example <code> IfInBag mybag "value" # Statements EndIf </code> Using an **Else** statement <code> IfInBag mybag "value" # Statements Else # Statements EndIf </code> Using a regular expression <code> IfInBag mybag
Lua SMTP Relay Control
8 Hits, Last modified: 7 years ago
s set just before this function call. =====Return Code Handling===== Starting in version 5.0.0, VPOP3 wi... turnCodeHandler** every time it receives a return code from the ISP's server. The function signature i... ponse. This must start with a numeric SMTP return code. This function is intended to be used if the ISP... age when they should really return a '5xx' return code to tell VPOP3 not to retry the message, and just
Spam Filter Rules: Redirect
6 Hits, Last modified: 7 years ago
irect the message to the Postmaster user's inbox <code> Redirect Postmaster </code> To redirect the message to the Postmaster user's 'spam' folder <code> Redirect Postmaster spam </code> To redirect to an external email address <code> Redirect recipient@e
Spam Filter Rules: AddHeader
6 Hits, Last modified: 7 years ago
=====Examples===== Changing the subject header <code> AddHeader "subject: VPOP3SPAM ${Subject}" </code> Removing a header line, by not setting a value <code> AddHeader "X-MyHeader:" </code> Changing the value of a header, or inserting it if it does not alread
Spam Filter Rules: IfMatch
6 Hits, Last modified: 7 years ago
see if it contains the text **hello** anywhere. <code> IfMatch subject "/.*hello.*/i" # Statements EndIf </code> The example above does not need a regular expre... so be achieved with a substring search, like so: <code> IfMatch subject "hello" # Statements EndIf </code> This following example uses a regular expression t
Spam Filter Rules: Comments
6 Hits, Last modified: 7 years ago
wing example demonstrates valid uses of comments <code> ${Apples} = 1 # A comment can go here #This is another comment, but I'll type code on the next line ${Pears} = 2 </code> The following example shows an invalid use of comments <code> ${Apples} = 1 #Comments should never appear on t
Spam Filter Rules: Convert
6 Hits, Last modified: 7 years ago
er case | ^Char |Converts to character from ASCII code (requires v5.0 or later) | ^Ord |Converts first character to ASCII code (requires v5.0 or later) | =====Examples===== S... decoding it back into a variable **${decoded}** <code> Convert "hello" "Base64" encoded Convert "${enc... "DeBase64" decoded # ${decoded} is now "hello" </code> Using UrlEncode <code> Convert "Me & You" "UrlE
Spam Filter Rules: If
6 Hits, Last modified: 7 years ago
clude an **Else** statement =====Examples===== <code> If ${score} < 100 # Statements EndIf </code> Note that it is not possible to combine tests within a s... need to nest two **If** statements, for instance <code> If ${score} < 100 If ${subject} = "Hello" # Statements EndIf EndIf </code> Using the **Else** statement <code> If ${score}
Autoresponder Commands
6 Hits, Last modified: 7 years ago
sent. So, if the autoresponder is defined as <code> [Section: catalog] Here's a catalog for you [De... et a catalog [All] Thank you for contacting us </code> then if you send a message to the autoresponder... ining 'catalog', you will get a response saying: <code> Here's a catalog for you Thank you for contacting us </code> Or, if you send a message to the autoresponder
SMTP Server Lua Scripting
5 Hits, Last modified: 3 weeks ago
age, or another string (including the SMTP result code). VPOP3 will terminate the connection if a **5xx** or **4xx** result code is given In VPOP3 Enterprise, there are also the... xt string returned should contain the SMTP result code - VPOP3 will terminate the connection if a **5xx** or **4xx** result code is given. =====GetMaxMessageSize()===== ''GetMax
Spam Filter Rules: Goto
5 Hits, Last modified: 7 years ago
infinite loop. =====Examples===== Basic example <code> If ${Score} >= 100 Goto End Endif # Anything p... ore} < 100 and "Goto End" is not executed :End </code> An infinite loop - you should **never** allow this to happen <code> :beginning # Statements Goto beginning #The code will never get this far, because there is an infinite
Spam Filter Rules: AddBag
4 Hits, Last modified: 7 years ago
Spam Filter Rules: GetAddressType
4 Hits, Last modified: 7 years ago
Spam Filter Rules: GetDecodedSection
4 Hits, Last modified: 7 years ago
Spam Filter Rules: Copy
4 Hits, Last modified: 7 years ago
Spam Filter Rules: DefineRule
4 Hits, Last modified: 7 years ago
Spam Filter Rules: *IFSUPPORT
4 Hits, Last modified: 7 years ago
Spam Filter Rules: DefineSetting
4 Hits, Last modified: 7 years ago
Spam Filter Rules: GetSectionMD5
4 Hits, Last modified: 7 years ago
Spam Filter Rules: GetSectionEncoding
4 Hits, Last modified: 7 years ago
Spam Filter Rules: Assignments
4 Hits, Last modified: 7 years ago
Spam Filter Rules: DNS
4 Hits, Last modified: 7 years ago
Route incoming POP3 mail by parsing message headers
4 Hits, Last modified: 7 years ago
Password Strength Checking Script
4 Hits, Last modified: 7 years ago
User Manager Script
4 Hits, Last modified: 13 months ago
Spam Filter Rules: HTTPGet
3 Hits, Last modified: 7 years ago
Spam Filter Rules: WinHTTPGet
3 Hits, Last modified: 7 years ago
Mail Sender Advanced Settings
3 Hits, Last modified: 7 years ago
Spam Filter Rules: HTTPGetMD5
3 Hits, Last modified: 7 years ago
Spam Filter Rules: HTTPPost
3 Hits, Last modified: 7 years ago
Summary Log File Format
3 Hits, Last modified: 7 years ago
Spam Filter Rules: Replace
3 Hits, Last modified: 7 years ago
Spam Filter Rules: Random
2 Hits, Last modified: 7 years ago
Spam Filter Rules: RemoveBag
2 Hits, Last modified: 7 years ago
Archive Script
2 Hits, Last modified: 2 years ago
Spam Filter Rules: RemoveBayesHam
2 Hits, Last modified: 7 years ago
Spam Filter Rules: StartSURBL
2 Hits, Last modified: 7 years ago
Status Monitor (port 5109) protocol
2 Hits, Last modified: 6 years ago
Spam Filter Rules: ZipCount
2 Hits, Last modified: 7 years ago
Spam Filter Rules: ZipContentsFull
2 Hits, Last modified: 7 years ago
Spam Filter Rules: ZipContents
2 Hits, Last modified: 7 years ago
Spam Filter Rules: SURBL
2 Hits, Last modified: 7 years ago
Spam Filter Rules: Stop
2 Hits, Last modified: 7 years ago
Spam Filter Rules: StartDNSBL
2 Hits, Last modified: 7 years ago
Spam Filter Rules: RemoveBayesSpam
2 Hits, Last modified: 7 years ago
Spam Filter Rules: StartDNS
2 Hits, Last modified: 7 years ago
Spam Filter Rules: *STOP
2 Hits, Last modified: 7 years ago
Spam Filter Rules: SendMessage
2 Hits, Last modified: 7 years ago
Spam Filter Rules: RemoveWhiteList
2 Hits, Last modified: 7 years ago
Spam Filter Rules: RemoveTags
2 Hits, Last modified: 7 years ago
Spam Filter Rules: RemoveBlackList
2 Hits, Last modified: 7 years ago
Spam Filter Rules: Log
2 Hits, Last modified: 7 years ago
Spam Filter Rules: GetMD5
2 Hits, Last modified: 7 years ago
Spam Filter Rules: Include
2 Hits, Last modified: 7 years ago
Spam Filter Rules: AddBayesHam
2 Hits, Last modified: 7 years ago
Batch file to end a database backup
2 Hits, Last modified: 7 years ago
Delete list member from all lists
2 Hits, Last modified: 7 years ago
Find biggest messages
2 Hits, Last modified: 6 years ago
Find a message
2 Hits, Last modified: 7 years ago
os.timedexecute
2 Hits, Last modified: 7 years ago
Outgoing Message Scripting
2 Hits, Last modified: 15 months ago
Signature Script
2 Hits, Last modified: 7 years ago
Spam Filter Rules
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
Spam Filter Rules: IfLocalAddress
2 Hits, Last modified: 7 years ago
Spam Filter Rules: Rule names and weights
2 Hits, Last modified: 7 years ago
Use the spam filter scripting to add random text to the subject on incoming messages
2 Hits, Last modified: 7 years ago
Spam Filter Rules: AddBayesSpam
2 Hits, Last modified: 7 years ago
Spam Filter Rules: GetUserGroup
2 Hits, Last modified: 7 years ago
Spam Filter Rules: AddNullAddress
2 Hits, Last modified: 7 years ago
Spam Filter Rules: AddWhiteList
2 Hits, Last modified: 7 years ago
Spam Filter Rules: Break
2 Hits, Last modified: 7 years ago
Spam Filter Rules: BulkScan
2 Hits, Last modified: 7 years ago
Spam Filter Rules: ClearBag
2 Hits, Last modified: 7 years ago
Spam Filter Rules: CountMatches
2 Hits, Last modified: 7 years ago
Spam Filter Rules: AddBlackList
2 Hits, Last modified: 7 years ago
Spam Filter Rules: DNSBL
2 Hits, Last modified: 5 years ago
Spam Filter Rules: Escape
2 Hits, Last modified: 7 years ago
Spam Filter Rules: GetRFC822Date
2 Hits, Last modified: 22 months ago
VPOP3.PostgresQuery
1 Hits, Last modified: 7 years ago
VPOP3.HMAC
1 Hits, Last modified: 7 months ago
LogDB.Sessions table
1 Hits, Last modified: 7 years ago
Autoresponder
1 Hits, Last modified: 7 years ago
Mail Connectors -> Mail Senders -> SMTP Direct
1 Hits, Last modified: 7 years ago
VPOP3Net.GetHTTP
1 Hits, Last modified: 4 years ago

Page Tools

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