Bug #117
pw(8) - Patch to customize maildirs creation
| Status: | Closed | Start date: | ||
|---|---|---|---|---|
| Priority: | Low | Due date: | ||
| Assignee: | - | % Done: | 0% |
|
| Category: | - | |||
| Target version: | - |
Description
Hello,
the attached patch makes creation of /var/mail/username files for new accounts
a bit more configurable. Since I only use maildirs for mail storage, now I
don't have to remove those files when adding new users :-)
Related todos
History
Updated by joerg about 7 years ago
On Sun, Mar 19, 2006 at 08:57:25PM +0100, Michal Belczyk wrote:
> the attached patch makes creation of /var/mail/username files for new accounts
> a bit more configurable. Since I only use maildirs for mail storage, now I
> don't have to remove those files when adding new users :-)
Am I reading this correctly and it does that by default?
Joerg
Updated by belczyk about 7 years ago
On Sun, Mar 19, 2006 at 09:29:54PM +0100, joerg@britannica.bec.de wrote:
> On Sun, Mar 19, 2006 at 08:57:25PM +0100, Michal Belczyk wrote:
> > the attached patch makes creation of /var/mail/username files for new accounts
> > a bit more configurable. Since I only use maildirs for mail storage, now I
> > don't have to remove those files when adding new users :-)
>
> Am I reading this correctly and it does that by default?
The default behaviour hasn't changed, pw(8) do creates those files:
# cat /etc/pw.conf
# pw useradd testuser -m
# ls -l /var/mail/testuser
-rw------- 1 testuser testuser 0 Mar 19 21:45 /var/mail/testuser
# pw userdel testuser -r
# ls -l /var/mail/testuser
ls: /var/mail/testuser: No such file or directory
# printf "createmailbox\tno\n" >> /etc/pw.conf
# pw useradd testuser -m
# ls -l /var/mail/testuser
ls: /var/mail/testuser: No such file or directory
Updated by joerg about 7 years ago
On Sun, Mar 19, 2006 at 09:49:01PM +0100, Michal Belczyk wrote:
> On Sun, Mar 19, 2006 at 09:29:54PM +0100, joerg@britannica.bec.de wrote:
> > On Sun, Mar 19, 2006 at 08:57:25PM +0100, Michal Belczyk wrote:
> > > the attached patch makes creation of /var/mail/username files for new accounts
> > > a bit more configurable. Since I only use maildirs for mail storage, now I
> > > don't have to remove those files when adding new users :-)
> >
> > Am I reading this correctly and it does that by default?
>
> The default behaviour hasn't changed, pw(8) do creates those files:
OK, thanks for clarifying this.
Joerg
Updated by tuxillo almost 4 years ago
As far as I can see, this adds the option to pw(8) to create mailboxes or not.
Does anyone consider this addition appropiate? If yes, please commit.
Updated by corecode over 3 years ago
I don't think this is necessary.