Replacing the default FreeBSD system mailer Sendmail with Postfix using SMTP AUTH, acting as mail client
# pkg install postfix-sasl1
Would you like to activate Postfix in /etc/mail/mailer.conf [n]? y2
# service sendmail stop
| diff --git a/utils/rspamd_stats.pl b/utils/rspamd_stats.pl | |
| index 3a8affce1..a8d65e36b 100755 | |
| --- a/utils/rspamd_stats.pl | |
| +++ b/utils/rspamd_stats.pl | |
| @@ -81,6 +81,7 @@ my %scanTime = ( | |
| total => 0, | |
| ); | |
| my %bidir_match; | |
| +my %fh_cache; # Cache for sub interactive | |
| # <type>: (If applied, this commit will...) <subject> (Max 50 char) | |
| # |<---- Using a Maximum Of 50 Characters ---->| | |
| #Update to [GH_TAGNAME] | |
| # Explain why this change is being made | |
| # |<---- Try To Limit Each Line to a Maximum Of 72 Characters ---->| |
| @echo off | |
| rem Munin Node for Windows external plugin wrapper | |
| rem Low physical memory warnings | |
| rem | |
| rem The default thresholds (usage in percents) are warning=80 critical=90 . | |
| rem Set environment variables as shown below to override the defaults. | |
| rem | |
| rem set mem_used.warning=80 |
| 16276 # OVH | |
| 44493 # Chelyabinsk-Signal | |
| 46606 # UNIFIEDLAYER-AS-1 | |
| 48666 # MAROSNET Telecommunication Company Network | |
| 49505 # SELECTEL-NET | |
| 133165 # DIGITALOCEAN | |
| 201229 # DIGITALOCEAN | |
| 202018 # DIGITALOCEAN | |
| 200130 # DIGITALOCEAN | |
| 21100 # ITLDC-NL (UA) |
| @echo off | |
| rem On-the-fly Windows directory mirroring using VSS snapshot | |
| rem with ShadowSpawn (https://github.com/candera/shadowspawn) and robocopy | |
| rem This script mirrors SRC directory contents into DST directory | |
| set SHADOWSPAWN="C:\Program Files\ShadowSpawn\ShadowSpawn.exe" |
| #!/bin/sh | |
| MAILDIR="/vmail/example.com/test/Maildir" | |
| DIR_BAD="$MAILDIR/.dkim_bad/new" | |
| DIR_GOOD="$MAILDIR/.dkim_good/new" | |
| DIR_NO_SIG="$MAILDIR/.dkim_no_sig/new" | |
| #------------------------------- |
There are two ways to authenticate on IRC server:
NickServ;PASS command in the IRC protocol (not supported in the Thunderbird UI).If your server or bouncer requires [2], set the following preferences as string values:
messenger.account.accountN.options.serverPassword
messenger.account.accountN.options.username
| --- source3/modules/vfs_shadow_copy2.c.orig 2017-04-02 08:19:24 UTC | |
| +++ source3/modules/vfs_shadow_copy2.c | |
| @@ -1533,7 +1533,7 @@ static bool check_access_snapdir(struct | |
| &smb_fname, | |
| false, | |
| SEC_DIR_LIST); | |
| - if (!NT_STATUS_IS_OK(status)) { | |
| + if (NT_STATUS_EQUAL(status, NT_STATUS_ACCESS_DENIED)) { | |
| DEBUG(0,("user does not have list permission " | |
| "on snapdir %s\n", |