Difference between revisions of "Instalation Null Client in Debian"

From Supercomputación y Cálculo Científico UIS
 
(3 intermediate revisions by one other user not shown)
Line 1: Line 1:
Back to [[Mail server]]
+
__NOTOC__
 +
 
 +
<div class="thumbnail img-thumbnail">http://wiki.sc3.uis.edu.co/images/a/a8/Logo_sc33.png</div>
 +
<p><div class="btn btn-primary"><i class="fa  fa-long-arrow-left"></i> [[Mail server]]</div></p>
 +
 
 +
<div class="col-md-14">
 +
    <div class="panel panel-darker-white-border">
 +
        <div class="panel-heading">
 +
            <h3 class="panel-title">Instalation Null Client in Debian</h3>
 +
        </div>
 +
        <div class="panel-body">
 +
            <p><b>Sendmail Null Client (Debian)</b></p>
 +
            <p>
  
'''Sendmail Null Client (Debian)'''
 
 
== Installation ==
 
== Installation ==
 
{{Command|<nowiki>aptitude install sendmail</nowiki>}}
 
{{Command|<nowiki>aptitude install sendmail</nowiki>}}
 
== Setting-up ==
 
== Setting-up ==
Replace ${ADMIN_EMAIL}, ${HOSTNAME}, ${DNS_DOMAIN}, ${IP_ADDR} for the adequate values.
+
1. Replace ${ADMIN_EMAIL}, ${HOSTNAME}, ${DNS_DOMAIN}, ${IP_ADDR} for the adequate values.
  
Redirect messages from root, postmaster, admin, etc, to the administrator.
+
2. Redirect messages from root, postmaster, admin, etc, to the administrator.
  
 
Edit /etc/mail/aliases
 
Edit /etc/mail/aliases
Line 19: Line 30:
 
Update the aliases database:
 
Update the aliases database:
 
{{Command|<nowiki>/usr/sbin/newaliases</nowiki>}}
 
{{Command|<nowiki>/usr/sbin/newaliases</nowiki>}}
Verify that sendmail knows about the different names that the client can have.
+
4. Verify that sendmail knows about the different names that the client can have.
  
Editar /etc/mail/local-host-names
+
Edit /etc/mail/local-host-names
 
{{File|/etc/mail/local-host-names|<pre><nowiki>
 
{{File|/etc/mail/local-host-names|<pre><nowiki>
 
...
 
...
Line 30: Line 41:
 
...
 
...
 
</pre></nowiki>}}
 
</pre></nowiki>}}
Verificar que el host aparece en /etc/hosts
+
Verify that the host appears in /etc/hosts
 
+
{{File|/etc/hosts|<pre><nowiki>
${IP_ADDR}  ${HOSTNAME}.${DNS_DOMAIN}  ${HOSTNAME}
+
...
 
+
${IP_ADDR}  ${HOSTNAME}.${DNS_DOMAIN}  ${HOSTNAME}
Editar /etc/mail/sendmail.mc
+
...</nowiki></pre>}}
 
+
Edit /etc/mail/sendmail.mc
(...)
+
{{File|/etc/mail/sendmail.mc|<pre><nowiki>
dnl #
+
...
dnl # Masquerading options
+
dnl #
FEATURE(`always_add_domain')dnl
+
dnl # Masquerading options
MASQUERADE_AS(`${HOSTNAME}.${DNS_DOMAIN}')dnl
+
FEATURE(`always_add_domain')dnl
FEATURE(`allmasquerade')dnl
+
MASQUERADE_AS(`${HOSTNAME}.${DNS_DOMAIN}')dnl
FEATURE(`masquerade_envelope')dnl
+
FEATURE(`allmasquerade')dnl
dnl #
+
FEATURE(`masquerade_envelope')dnl
dnl # Default Mailer setup
+
dnl #
MAILER_DEFINITIONS
+
dnl # Default Mailer setup
MAILER(`local')dnl
+
MAILER_DEFINITIONS
MAILER(`smtp')dnl
+
MAILER(`local')dnl
 
+
MAILER(`smtp')dnl
Activar la nueva configuración
+
...</nowiki></pre>}}
 
+
5. Activate the new configuration
yes | sendmailconfig
+
{{Command|<nowiki>yes | sendmailconfig</nowiki>}}
 
+
== Security ==
== Seguridad ==
+
By default Debian installs sendmail enabled only for localhost.<br>
Por omisi&oacute;n Debian instala sendmail habilitado solo para localhost<br>
+
If tcp-wrappers are used, a line similar to the following should be added to /etc/hosts.allow
Si se usan tcp-wrappers, se debe agregar una l&iacute;nea similar a la siguiente en
+
{{File|/etc/hosts.allow|<pre><nowiki>
/etc/hosts.allow
+
...
 
+
sendmail: 127.0.0.1
sendmail: 127.0.0.1
+
</nowiki></pre>}}
 
+
If different filters are used, it's necessary to allow the access to the port localhost:25/tcp from localhost:1025/tcp
Si se usan otros filtros se debe permitir el acceso al puerto localhost:25/tcp desde localhost:>1025/tcp
+
== Cleaning-up (optional)==
 
+
Remove ssmtp
== Limpieza (opcional)==
+
{{Command|<nowiki>aptitude remove ssmtp</nowiki>}}
Eliminar el ssmtp
+
If the DNS setup isn't defined in /etc/network/interfaces, remove resolvconf
 
+
{{Command|<nowiki>aptitude remove resolvconf</nowiki>}}
aptitude remove ssmtp
 
  
Si la configuración DNS no está definida en /etc/network/interfaces, eliminar el resolvconf
+
            </p>
aptitude remove resolvconf
+
        </div>
 +
    </div>
 +
</div>

Latest revision as of 20:12, 9 April 2015


Logo_sc33.png

Instalation Null Client in Debian

Sendmail Null Client (Debian)

Installation

aptitude install sendmail

Setting-up

1. Replace ${ADMIN_EMAIL}, ${HOSTNAME}, ${DNS_DOMAIN}, ${IP_ADDR} for the adequate values.

2. Redirect messages from root, postmaster, admin, etc, to the administrator.

Edit /etc/mail/aliases

File: /etc/mail/aliases
<nowiki>
...
operator: root
admin: root
root: ${ADMIN_EMAIL}
...
</nowiki>

Update the aliases database:

/usr/sbin/newaliases

4. Verify that sendmail knows about the different names that the client can have.

Edit /etc/mail/local-host-names

File: /etc/mail/local-host-names
<nowiki>
...
 localhost
 localhost.localdomain
 ${HOSTNAME}
 ${HOSTNAME}.${DNS_DOMAIN}
...
</nowiki>

Verify that the host appears in /etc/hosts

File: /etc/hosts
...
${IP_ADDR}  ${HOSTNAME}.${DNS_DOMAIN}  ${HOSTNAME}
...

Edit /etc/mail/sendmail.mc

File: /etc/mail/sendmail.mc
...
dnl #
dnl # Masquerading options
FEATURE(`always_add_domain')dnl
MASQUERADE_AS(`${HOSTNAME}.${DNS_DOMAIN}')dnl
FEATURE(`allmasquerade')dnl
FEATURE(`masquerade_envelope')dnl
dnl #
dnl # Default Mailer setup
MAILER_DEFINITIONS
MAILER(`local')dnl
MAILER(`smtp')dnl
...

5. Activate the new configuration

yes | sendmailconfig

Security

By default Debian installs sendmail enabled only for localhost.
If tcp-wrappers are used, a line similar to the following should be added to /etc/hosts.allow

File: /etc/hosts.allow
...
sendmail: 127.0.0.1

If different filters are used, it's necessary to allow the access to the port localhost:25/tcp from localhost:1025/tcp

Cleaning-up (optional)

Remove ssmtp

aptitude remove ssmtp

If the DNS setup isn't defined in /etc/network/interfaces, remove resolvconf

aptitude remove resolvconf