Accéder au contenu principal

Articles

Affichage des articles du octobre, 2021

LOCAL and REMOTE email

 Si vous hébergez le nom de domaine et la messagerie est sur un autre serveur vous devez configuer cela en REMOT avec l'adresse IP du serveur distant Question    Within the "Email Routing" section of cPanel, what is the difference between  Remote Mail Exchanger & Local Mail Exchanger ?   Answer   This section details how cPanel should handle mail for domains hosted on the server.  If the MX records for the user's domain resolves to the server, the option should be set to "local". If instead, the domains MX records are resolving to a remote host, the option should be set to "remote." You may also select "automatic." More details about email routing on our website here:

How do I calculate bandwidth usage per email account?

Pour IMAP MB avec la DATE 19 Oct Sorting by the last twelve hours is a fairly complex query when taking in timezones and crossing dates, due to how the timestamps work. You may be able to get satisfactory results just by inserting a grep for the current day to the query: awk -F':' '{print$1}' /home/dzamaca/etc/maarama.dz/shadow|while read address;do printf "%s@maarama.dz: " "$address";grep "imap.*${address}@maarama.dz" /var/log/maillog*| grep "Oct 19"|awk -F'/' '/bytes/{SUM += $NF}END {print SUM/1024/1024" MB"}';done | grep -v " 0 MB" Quand il y'a une date comme le 05/12/2022 il faut faire Dec 5 ( avec 3 blanc ) et Dec 25 avec un Blanc Calculer pour une seule boite email du -sh /home/dzamaca/mail/ebs.dz/y.boutarouk/ Pour IMAP MB awk -F':' '{print$1}' /home/dzamaca/etc/maarama.dz/shadow|while read address;do printf "%s@NOM DE DOMAINE.DZ" "$address"; g