Archivo de la categoría: linux

Setting up Wake-on-lan on Ubuntu Server 18.04 LTS

Alright, where to begin?! So what is the problem? The steps for preparing Ubuntu for WoL are as follows: Install ethtool with:sudo apt-get install ethtool– Ubuntu Server 18.04 LTS already has this installed Run:ifconfigto get the name of your network interface. Its worth noting here that all the guides I found say that “your network interface is most… Leer más »

Replacing a failed disk in a mdadm RAID 5

December 8, 2013 Thomas Jansson16 Comments Introduction I have a RAID5 with 4 disks, see Rebuilding and updating my Linux NAS and HTPC server, and from my daily digest emails of the system I discovered that one of my disk had issues. I found the following in dmesg: [ 8347.726688] ata6.00: exception Emask 0x0 SAct 0xffff SErr… Leer más »

Delete postfix-script: warning: damaged message: corrupt

# postfix check postfix/postfix-script: warning: damaged message: corrupt/EDC75C244C20 postfix/postfix-script: warning: damaged message: corrupt/63380C2CC682 postfix/postfix-script: warning: damaged message: corrupt/AB9F7C2CC3AA postfix/postfix-script: warning: damaged message: corrupt/C76F3C2CC3B0     cd /var/spool/postfix/corrupt rm -rf * # postfix check # ALL OK! 😉

warning: connect to Milter service inet:127.0.0.1:12768: Connection refused

Quitar en   current milter settings in main.cf # OpenDKIM milter_default_action = accept milter_protocol = 6 smtpd_milters = , inet:127.0.0.1:8891, inet:127.0.0.1:12768 non_smtpd_milters = $smtpd_milters Thanks in advance! You have both Plesk milter and OpenDkim listed in non_smtpd_milters, change it to… milter_default_action = accept milter_protocol = 6 smtpd_milters = , inet:127.0.0.1:8891, inet:127.0.0.1:12768 non_smtpd_milters = inet:127.0.0.1:8891 Hope… Leer más »

Cómo configurar DKIM en una máquina con postfix.

https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-dkim-with-postfix-on-debian-wheezy    Correo electrónico, Servidores, SPAM Compartir     Paso 1. En primer lugar, debemos instalar opendkim. Cada distribución tendrá una forma de hacerlo. Por lo general, con: yum install opendkim o bien apt-get install opendkim Una vez instalado, tendremos que editar el archivo /etc/opendkim.conf y dejar una configuración similar a esta: Canonicalization relaxed/relaxed ExternalIgnoreList refile:/etc/opendkim/TrustedHosts InternalHosts refile:/etc/opendkim/TrustedHosts KeyFile… Leer más »