Summary
Can I create a new user without creating mail spool and without modification of /etc/default/useradd
?
Explaination
I want to create a user that has a home directory and skeletion, but I don't want the useradd
script to add a mail spool file to the unix system.
My /etc/default/useradd
file states that
CREATE_MAIL_SPOOL=yes
but I don't want to modify the default behaviour.
For now I'm using
useradd nomailuser
rm /var/spool/mail/nomailuser
Also I know about -d
but it seems that I can't find an option for not creating a mail spool.
I'm thinking about is there an option to use custom /etc/default/useradd
file.