Mail server; dovecot, postfix etc

sudo apt -y install dovecot-core dovecot-imapd dovecot-pop3d postfix sasl2-bin sudo adduser postfix sasl systemctl restart saslauthd systemctl restart postfix /etc/postfix/sasl/smtpd.conf pwcheck_method: saslauthd mech_list: plain login And of course there’s a lot more...

pfsense

Port forward works only on interface with default gateway, does not work for alternative wans (CE Only)https://redmine.pfsense.org/issues/11805

unifi

# unifi cloud key plus 2.0.x # Updated with web gui for all services under one single port (443). Fantastic! # (Not explaining how to generate certificates here.) cp /data/unifi-core/config/unifi-core.crt /data/unifi-core/config/unifi-core.crt.bak cp...

Turning off automatic upgrades

I’m using other tools for checking and upgrading so… $ sudoedit /etc/apt/apt.conf.d/20auto-upgrades From... APT::Periodic::Update-Package-Lists "1"; APT::Periodic::Unattended-Upgrade "1"; ...to... APT::Periodic::Update-Package-Lists "1"; APT::Periodic::Unattended-Upgrade "0"; ...or... APT::Periodic::Update-Package-Lists "0"; APT::Periodic::Download-Upgradeable-Packages "0"; APT::Periodic::AutocleanInterval "0"; APT::Periodic::Unattended-Upgrade "0";