• skip to content

PSCS Wiki

User Tools

  • Admin
  • Log In

Site Tools

  • Recent Changes
  • Media Manager
  • Sitemap
Trace: • Performance Requirements • Daily Summary is not reporting all Sent messages • Trying to perform administrative tasks without rights • Seeing where a message came from • Spamfilter Whitelist & Blacklist • POP3 Protocol • Message Downloads Not Completing • Mail Connectors -> Mail Senders • Will I receive a VAT invoice? • Forwarded Emails Not Arriving

end

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:

  • 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
  • Mail Connectors -> Mail Senders -> SMTP Direct
  • Mail Connectors -> Mail Senders -> SMTP Relay
  • Spamrules example - increase spam score for long sender domain
  • Spam Filter Rules: SendMessage
  • VPOP3.SendMessage

Fulltext results:

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
9 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
SMTP Server Lua Scripting
8 Hits, Last modified: 3 weeks ago
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... ocked()** - (v6.3+ Enterprise Only) called at the end of a message if recipients have been blocked to a
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
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
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>
Spam Filter Rules: Goto
3 Hits, Last modified: 7 years ago
=== Basic example <code> If ${Score} >= 100 Goto End Endif # Anything placed here will only run if ${Score} < 100 and "Goto End" is not executed :End </code> An infinite loop - you should **never** allow this to happen <code> :
Batch file to end a database backup
3 Hits, Last modified: 7 years ago
======Batch file to end a database backup====== VPOP3 runs pg_dump.exe to perform the regular database... 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: IfMatch
3 Hits, Last modified: 7 years ago
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
IMAP4 Server Scripting
3 Hits, Last modified: 7 years ago
pabilities (a space is added at the beginning and end to make finding words simpler) The function shou... tring.gsub(caps, " IDLE ", " ") return caps end ====DoListResult function==== if (m_Lua.C... oListResult(folder, attributes, extended) -- do nothing return true, attributes, extended end
POP3 Client Lua Scripting
3 Hits, Last modified: 22 months ago
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
Reset Message Folder Counts
3 Hits, Last modified: 7 years ago
s totsize, sum(case when newflag then 1 else 0 end) as newcnt, count(case when read and not hold then null else msgid end) as unreadcnt, sum(case when hold then 1 else 0 end) as holdcnt from messages.folders left join (m
User Manager Script
3 Hits, Last modified: 13 months ago
sername]) then return users[Username] end return Username; end </code> or <code> function TranslateUsername(Protocol, Username) -- Re... "@company%.com$", ""); return Username; end </code> If you need, we can produce a script fo
Spam Filter Rules: AddHeader
2 Hits, Last modified: 7 years ago
s not already present, it will be inserted at the end of the headers. * **AddHeader** should not be u... If you prefix it with +, it will be added at the end of the final headers * If you prefix it (after
SMTP Direct Sender Settings
2 Hits, Last modified: 7 years ago
es - Stop processing the overrides - specify ''$end''. VPOP3 will stop processing the overrides at th... ple line may be: * smtp.myisp.com $retries>=4 $end This would tell VPOP3 to send the message to you
Archive Script
2 Hits, Last modified: 2 years ago
Status
2 Hits, Last modified: 7 years ago
Lua SMTP MX Control
2 Hits, Last modified: 22 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
Settings -> Attachment Processing
2 Hits, Last modified: 7 years ago
Increase the spam score for subject marker
1 Hits, Last modified: 7 years ago
Useful other things
1 Hits, Last modified: 7 years ago
Increase the spam score for header marker
1 Hits, Last modified: 5 years ago
VPOP3.GetMessageLines
1 Hits, Last modified: 7 years ago
VPOP3.MessageSeek
1 Hits, Last modified: 7 years ago
Spamrules example - increase spam score for long sender domain
1 Hits, Last modified: 7 years ago
Send Admin Message
1 Hits, Last modified: 7 years ago
Spam Filter Rules: Comments
1 Hits, Last modified: 7 years ago
Increase the spam score for certain recipients
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
Attachment Extraction Scripting
1 Hits, Last modified: 7 years ago
msgaudit Database table
1 Hits, Last modified: 7 years ago
Misc -> Advanced Tab
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
Autoresponder scripting
1 Hits, Last modified: 4 days 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