Re: [DNG] exim paniclog /var/log/exim4/paniclog has non-zero size

2021-12-02 Thread Pontus Goffe via Dng

Den 2021-12-02 kl. 09:16, skrev Marc Shapiro via Dng:


No luck.  I rebooted and got the paniclog error during the boot. After 
booting, I stopped exim4, deleted the paniclog, and restarted exim4.  
It created a paniclog containing the following:



Had you also executed

exim4 -qff -v

I think you would immediately had your paniclog back, you have 
undelivered messages that fails when exim tries to deliver.




2021-12-02 00:06:49 1momA3-00054k-DE == m...@quixote.home R=local_user 
T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory 
name for mail_spool transport) not permitted



How do I convince exim4 that /var/spool/marc is an acceptable file 
name for mail_spool transport?


Exim no longer allows a sender to decide a name of a path component, in 
this case 'marc'. Your config needs to agree on 'marc' being allowed. 
This is done using a lookup locally.
From what I understand there was / is a discussion about a setting to 
just warn about this tainted data but allow it, but I could not make it 
work.
I think you already have a lookup in the default config that checks 
/etc/aliases which would allow 'marc' in your path if you just add a line

marc: marc
to it, I cant promise because I also use another lookup to be able to 
send mail.


Anyhow, after a successful lookup, the config variable ${local_part} can 
be replaced by the new variable ${local_part_data} which will recieve 
its value in the lookup you need to have.
Your config files under /etc/exim4/conf.d must not contain ${local_part} 
anymore.


I have no idea what will happen if you try to reinstall exim to get a 
new default config.


//PG

___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


Re: [DNG] exim paniclog /var/log/exim4/paniclog has non-zero size

2021-12-02 Thread Marc Shapiro via Dng


On 12/1/21 23:56, Marc Shapiro wrote:


On 12/1/21 10:10, Ludovic Bellière via Dng wrote:
If you do not need your mail system to talk to the world, then you 
should
replace exim with something that is a lot simpler to use and 
configure. I would
suggest msmtp (https://marlam.de/msmtp/) as its configuration is a 
lot more
simpler to the neophyte. If you want to keep exim4, I would then 
suggest to nuke

the existing configuration and start from scratch with `dpkg-reconfigure
exim4-config'. Extended information should be available at
https://wiki.debian.org/Exim

Exim4 being a software designed to handle large amount of emails, it 
may be out

of scope for your personal usage. While, as I said, msmtp is a lot more
accessible through its minimalist approach: you only need a file with 
a dozen of

lines for it to function properly.

While I do use it, I wouldn't be able to help you with exim4, the 
software is

way too large and complex for my own understanding. I mainly rely on
dpkg-reconfigure and hope nothing breaks. And while msmtp is easier to
understand, changing software can itself be a source of immeasurable 
pain. So,

if in doubt, you should probably rely on dpkg-reconfigure.

Cheers,
    Ludovic


On Wed, 01 Dec 2021, Marc Shapiro via Dng wrote:


This is very likely the problem, as I now have version 4.94.2-7
installed.  I know virtually nothing, however, about how MTAs do 
their work.  Where and how do I make these config changes. I use 
Thunderbird for mail coming from outside the local network. Exim is 
only used for local transport (such as e-mail from cron jobs).



Marc


I looked into some of the other options and I do not recall why I 
decided against them.  It may have been when I thought that I was 
going to use the MTA for more than just local mail.


In any case, I have run `dpkg-reconfigure exim4-config' using the 
defaults from when I set it up originally.  I am hoping that doing so 
with the new exim4 installed will correct the configuration issues.


When I ran `dpkg-reconfigure exim4-config' I got the error about the 
paniclog being non-zero size, but I expected that.  I truncated the 
paniclog and ran `dpkg-reconfigure exim4-config' again, this time with 
no errors.


I have sent myself an e-mail from 'root' but have not received it.  I 
will probably try shutting down the system and rebooting, to see if 
that gets things back in order after the reconfig.


No luck.  I rebooted and got the paniclog error during the boot. After 
booting, I stopped exim4, deleted the paniclog, and restarted exim4.  It 
created a paniclog containing the following:



2021-12-02 00:06:48 1mmEkA-9l-Jr == m...@quixote.home R=local_user 
T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory 
name for mail_spool transport) not permitted
2021-12-02 00:06:48 1msgsb-0002NH-Cv == m...@quixote.home R=local_user 
T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory 
name for mail_spool transport) not permitted
2021-12-02 00:06:49 1mrJnB-00026m-53 == m...@quixote.home R=local_user 
T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory 
name for mail_spool transport) not permitted
2021-12-02 00:06:49 1msCJK-0007YK-Pi == m...@quixote.home R=local_user 
T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory 
name for mail_spool transport) not permitted
2021-12-02 00:06:49 1momA3-00054k-DE == m...@quixote.home R=local_user 
T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory 
name for mail_spool transport) not permitted



How do I convince exim4 that /var/spool/marc is an acceptable file name 
for mail_spool transport?



Marc

___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


Re: [DNG] exim paniclog /var/log/exim4/paniclog has non-zero size

2021-12-01 Thread Marc Shapiro via Dng


On 12/1/21 10:10, Ludovic Bellière via Dng wrote:

If you do not need your mail system to talk to the world, then you should
replace exim with something that is a lot simpler to use and 
configure. I would
suggest msmtp (https://marlam.de/msmtp/) as its configuration is a lot 
more
simpler to the neophyte. If you want to keep exim4, I would then 
suggest to nuke

the existing configuration and start from scratch with `dpkg-reconfigure
exim4-config'. Extended information should be available at
https://wiki.debian.org/Exim

Exim4 being a software designed to handle large amount of emails, it 
may be out

of scope for your personal usage. While, as I said, msmtp is a lot more
accessible through its minimalist approach: you only need a file with 
a dozen of

lines for it to function properly.

While I do use it, I wouldn't be able to help you with exim4, the 
software is

way too large and complex for my own understanding. I mainly rely on
dpkg-reconfigure and hope nothing breaks. And while msmtp is easier to
understand, changing software can itself be a source of immeasurable 
pain. So,

if in doubt, you should probably rely on dpkg-reconfigure.

Cheers,
    Ludovic


On Wed, 01 Dec 2021, Marc Shapiro via Dng wrote:


This is very likely the problem, as I now have version 4.94.2-7
installed.  I know virtually nothing, however, about how MTAs do 
their work.  Where and how do I make these config changes.  I use 
Thunderbird for mail coming from outside the local network. Exim is 
only used for local transport (such as e-mail from cron jobs).



Marc


I looked into some of the other options and I do not recall why I 
decided against them.  It may have been when I thought that I was going 
to use the MTA for more than just local mail.


In any case, I have run `dpkg-reconfigure exim4-config' using the 
defaults from when I set it up originally.  I am hoping that doing so 
with the new exim4 installed will correct the configuration issues.


When I ran `dpkg-reconfigure exim4-config' I got the error about the 
paniclog being non-zero size, but I expected that.  I truncated the 
paniclog and ran `dpkg-reconfigure exim4-config' again, this time with 
no errors.


I have sent myself an e-mail from 'root' but have not received it.  I 
will probably try shutting down the system and rebooting, to see if that 
gets things back in order after the reconfig.



Marc

___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


Re: [DNG] exim paniclog /var/log/exim4/paniclog has non-zero size

2021-12-01 Thread Ludovic Bellière via Dng

If you do not need your mail system to talk to the world, then you should
replace exim with something that is a lot simpler to use and configure. I would
suggest msmtp (https://marlam.de/msmtp/) as its configuration is a lot more
simpler to the neophyte. If you want to keep exim4, I would then suggest to nuke
the existing configuration and start from scratch with `dpkg-reconfigure
exim4-config'. Extended information should be available at
https://wiki.debian.org/Exim

Exim4 being a software designed to handle large amount of emails, it may be out
of scope for your personal usage. While, as I said, msmtp is a lot more
accessible through its minimalist approach: you only need a file with a dozen of
lines for it to function properly.

While I do use it, I wouldn't be able to help you with exim4, the software is
way too large and complex for my own understanding. I mainly rely on
dpkg-reconfigure and hope nothing breaks. And while msmtp is easier to
understand, changing software can itself be a source of immeasurable pain. So,
if in doubt, you should probably rely on dpkg-reconfigure.

Cheers,
Ludovic


On Wed, 01 Dec 2021, Marc Shapiro via Dng wrote:


This is very likely the problem, as I now have version 4.94.2-7
installed.  I know virtually nothing, however, about how MTAs do their 
work.  Where and how do I make these config changes.  I use 
Thunderbird for mail coming from outside the local network.  Exim is 
only used for local transport (such as e-mail from cron jobs).



Marc



signature.asc
Description: PGP signature
___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


Re: [DNG] exim paniclog /var/log/exim4/paniclog has non-zero size

2021-12-01 Thread Marc Shapiro via Dng
This is very likely the problem, as I now have version 4.94.2-7 
installed.  I know virtually nothing, however, about how MTAs do their 
work.  Where and how do I make these config changes.  I use Thunderbird 
for mail coming from outside the local network.  Exim is only used for 
local transport (such as e-mail from cron jobs).



Marc



On 11/30/21 18:56, Ludovic Bellière via Dng wrote:

On Tue, 30 Nov 2021, Marc Shapiro via Dng wrote:

I am getting e-mails like the one below all the time, now. I had this 
problem
once before and I think that all I had to do was clear the paniclog 
with '>

paniclog', but that does not seem to be working, now. I cleared it this
morning, and when I just checked it was filling up again. It looks 
like I get
three lines every half hour. This is preventing me from receiving 
e-mails sent
by a cron job that runs a backup script. Any ideas on how to get rid 
of this

and not have it come back would be greatly appreciated.

Marc


Make sure your exim configuration matches with the version of exim you 
have
installed. Make sure there is no .dpkg-new laying around in 
/etc/exim4. Check /usr/share/doc/exim4-base/changelog.gz.


Notably, in /usr/share/doc/exim4-base/README.UPDATING.gz:

# Exim version 4.94
# -
#
# Some Transports now refuse to use tainted data in constructing their 
delivery
# location; this WILL BREAK configurations which are not updated 
accordingly.
# In particular: any Transport use of $local_part which has been 
relying upon
# check_local_user far away in the Router to make it safe, should be 
updated to

# replace $local_part with $local_part_data.


Cheers,
    Ludovic

___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng

___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


Re: [DNG] exim paniclog /var/log/exim4/paniclog has non-zero size

2021-11-30 Thread Ludovic Bellière via Dng

On Tue, 30 Nov 2021, Marc Shapiro via Dng wrote:


I am getting e-mails like the one below all the time, now. I had this problem
once before and I think that all I had to do was clear the paniclog with '>
paniclog', but that does not seem to be working, now. I cleared it this
morning, and when I just checked it was filling up again. It looks like I get
three lines every half hour. This is preventing me from receiving e-mails sent
by a cron job that runs a backup script. Any ideas on how to get rid of this
and not have it come back would be greatly appreciated.

Marc


Make sure your exim configuration matches with the version of exim you have
installed. Make sure there is no .dpkg-new laying around in /etc/exim4. Check 
/usr/share/doc/exim4-base/changelog.gz.

Notably, in /usr/share/doc/exim4-base/README.UPDATING.gz:

# Exim version 4.94
# -
#
# Some Transports now refuse to use tainted data in constructing their delivery
# location; this WILL BREAK configurations which are not updated accordingly.
# In particular: any Transport use of $local_part which has been relying upon
# check_local_user far away in the Router to make it safe, should be updated to
# replace $local_part with $local_part_data.


Cheers,
Ludovic


signature.asc
Description: PGP signature
___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


Re: [DNG] exim paniclog /var/log/exim4/paniclog has non-zero size

2021-11-30 Thread tempforever
Marc Shapiro via Dng wrote:
> exim paniclog /var/log/exim4/paniclog on quixote.home has non-zero
> size, mail system might be broken. Up to 10 lines are quoted below.
>
> 2021-11-30 06:00:19 1momA3-00054k-DE ==m...@quixote.home  R=local_user
> T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory
> name for mail_spool transport) not permitted

One other link that may be of help (?)
https://dev1galaxy.org/viewtopic.php?id=4379

___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


Re: [DNG] exim paniclog /var/log/exim4/paniclog has non-zero size

2021-11-30 Thread tempforever
Marc Shapiro via Dng wrote:
> I am getting e-mails like the one below all the time, now.  I had this
> problem once before and I think that all I had to do was clear the
> paniclog with '> paniclog', but that does not seem to be working,
> now.  I cleared it this morning, and when I just checked it was
> filling up again.  It looks like I get three lines every half hour. 
> This is preventing me from receiving e-mails sent by a cron job that
> runs a backup script.  Any ideas on how to get rid of this and not
> have it come back would be greatly appreciated.
>
> Marc
>
> e-mail showing paniclog:
>
> exim paniclog /var/log/exim4/paniclog on quixote.home has non-zero
> size, mail system might be broken. Up to 10 lines are quoted below.
>
> 2021-11-30 06:00:19 1momA3-00054k-DE ==m...@quixote.home  R=local_user
> T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory
> name for mail_spool transport) not permitted
> 2021-11-30 06:30:19 1mrJnB-00026m-53 ==m...@quixote.home  R=local_user
> T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory
> name for mail_spool transport) not permitted
> 2021-11-30 06:30:20 1mmEkA-9l-Jr ==m...@quixote.home  R=local_user
> T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory
> name for mail_spool transport) not permitted
> 2021-11-30 06:30:20 1momA3-00054k-DE ==m...@quixote.home  R=local_user
> T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory
> name for mail_spool transport) not permitted
> 2021-11-30 07:00:19 1mrJnB-00026m-53 ==m...@quixote.home  R=local_user
> T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory
> name for mail_spool transport) not permitted
> 2021-11-30 07:00:19 1mmEkA-9l-Jr ==m...@quixote.home  R=local_user
> T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory
> name for mail_spool transport) not permitted
> 2021-11-30 07:00:19 1momA3-00054k-DE ==m...@quixote.home  R=local_user
> T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory
> name for mail_spool transport) not permitted
> 2021-11-30 07:30:19 1mrJnB-00026m-53 ==m...@quixote.home  R=local_user
> T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory
> name for mail_spool transport) not permitted
> 2021-11-30 07:30:20 1mmEkA-9l-Jr ==m...@quixote.home  R=local_user
> T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory
> name for mail_spool transport) not permitted
> 2021-11-30 07:30:20 1momA3-00054k-DE ==m...@quixote.home  R=local_user
> T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory
> name for mail_spool transport) not permitted
>
> ___
> Dng mailing list
> Dng@lists.dyne.org
> https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng

Does this help?  A dist-upgrade, thus upgrading exim, could cause
breakage, requiring configuration update.  I use postfix instead of
exim, and don't know much about exim, just found this following link on
a search.

https://lists.archive.carbon60.com/exim/users/117441

___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


Re: [DNG] exim paniclog /var/log/exim4/paniclog has non-zero size

2021-11-30 Thread Marc Shapiro via Dng

This is what is in /var/log/exim4.  As you can see, thae paniclog still has the 
same ownership and rights as everything else in the directory.

Marc

root@quixote:/var/log/exim4# ls
total 88
-rw-r- 1 Debian-exim adm 10728 Nov 30 15:13 mainlog
-rw-r- 1 Debian-exim adm 31961 Nov 30 07:53 mainlog.1
-rw-r- 1 Debian-exim adm  1036 Nov 21 08:02 mainlog.10.gz
-rw-r- 1 Debian-exim adm  1426 Nov 29 07:45 mainlog.2.gz
-rw-r- 1 Debian-exim adm  1241 Nov 28 07:41 mainlog.3.gz
-rw-r- 1 Debian-exim adm  1170 Nov 27 07:52 mainlog.4.gz
-rw-r- 1 Debian-exim adm  1172 Nov 26 07:55 mainlog.5.gz
-rw-r- 1 Debian-exim adm  1160 Nov 25 07:42 mainlog.6.gz
-rw-r- 1 Debian-exim adm  1167 Nov 24 07:36 mainlog.7.gz
-rw-r- 1 Debian-exim adm  1168 Nov 23 07:56 mainlog.8.gz
-rw-r- 1 Debian-exim adm  1148 Nov 22 07:54 mainlog.9.gz
-rw-r- 1 Debian-exim adm   740 Nov 30 15:13 paniclog
-rw-r- 1 Debian-exim adm 0 Nov  9 23:14 rejectlog
 -



On 11/30/21 15:07, d...@d404.nl wrote:

On 01-12-2021 00:00, Marc Shapiro via Dng wrote:
I am getting e-mails like the one below all the time, now.  I had 
this problem once before and I think that all I had to do was clear 
the paniclog with '> paniclog', but that does not seem to be working, 
now.  I cleared it this morning, and when I just checked it was 
filling up again.  It looks like I get three lines every half hour.  
This is preventing me from receiving e-mails sent by a cron job that 
runs a backup script.  Any ideas on how to get rid of this and not 
have it come back would be greatly appreciated.


Marc

e-mail showing paniclog:

exim paniclog /var/log/exim4/paniclog on quixote.home has non-zero 
size, mail system might be broken. Up to 10 lines are quoted below.


2021-11-30 06:00:19 1momA3-00054k-DE ==m...@quixote.home R=local_user 
T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory 
name for mail_spool transport) not permitted
2021-11-30 06:30:19 1mrJnB-00026m-53 ==m...@quixote.home R=local_user 
T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory 
name for mail_spool transport) not permitted
2021-11-30 06:30:20 1mmEkA-9l-Jr ==m...@quixote.home R=local_user 
T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory 
name for mail_spool transport) not permitted
2021-11-30 06:30:20 1momA3-00054k-DE ==m...@quixote.home R=local_user 
T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory 
name for mail_spool transport) not permitted
2021-11-30 07:00:19 1mrJnB-00026m-53 ==m...@quixote.home R=local_user 
T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory 
name for mail_spool transport) not permitted
2021-11-30 07:00:19 1mmEkA-9l-Jr ==m...@quixote.home R=local_user 
T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory 
name for mail_spool transport) not permitted
2021-11-30 07:00:19 1momA3-00054k-DE ==m...@quixote.home R=local_user 
T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory 
name for mail_spool transport) not permitted
2021-11-30 07:30:19 1mrJnB-00026m-53 ==m...@quixote.home R=local_user 
T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory 
name for mail_spool transport) not permitted
2021-11-30 07:30:20 1mmEkA-9l-Jr ==m...@quixote.home R=local_user 
T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory 
name for mail_spool transport) not permitted
2021-11-30 07:30:20 1momA3-00054k-DE ==m...@quixote.home R=local_user 
T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory 
name for mail_spool transport) not permitted


___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


You probably used a UID/GID to clear paniclog which exim cannot write 
to because different group or no group or other rights.


Grtz

Nick

___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng

___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


Re: [DNG] exim paniclog /var/log/exim4/paniclog has non-zero size

2021-11-30 Thread Marc Shapiro via Dng

root@quixote:/usr/local/bin# ls -al /var/mail/
total 396
drwxrwsr-x  2 root mail   4096 Nov 30 07:59 .
drwxr-xr-x 13 root root   4096 Dec  3  2020 ..
-rw-rw  1 marc mail 136846 Nov 30 07:53 marc
-rw-r--r--  1 marc mail   9864 Nov 30 15:15 marc.msf
-rw-r--r--  1 marc mail 25 Nov 25 23:36 msgFilterRules.dat
-rw---  1 root mail  0 Nov 14  2020 root
-rw-r--r--  1 marc mail   1622 Nov 25 23:36 root.msf
-rw---  1 marc mail 196494 Nov 30 08:05 Trash
-rw-r--r--  1 marc mail  26198 Nov 30 14:51 Trash.msf
-rw---  1 marc mail  0 Nov 25 23:35 Unsent Messages
-rw-r--r--  1 marc mail   1757 Nov 30 15:14 Unsent Messages.msf

On 11/30/21 15:06, Antony Stone wrote:

ls -al/var/mail/

___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


Re: [DNG] exim paniclog /var/log/exim4/paniclog has non-zero size

2021-11-30 Thread d...@d404.nl

On 01-12-2021 00:00, Marc Shapiro via Dng wrote:
I am getting e-mails like the one below all the time, now.  I had this 
problem once before and I think that all I had to do was clear the 
paniclog with '> paniclog', but that does not seem to be working, 
now.  I cleared it this morning, and when I just checked it was 
filling up again.  It looks like I get three lines every half hour.  
This is preventing me from receiving e-mails sent by a cron job that 
runs a backup script.  Any ideas on how to get rid of this and not 
have it come back would be greatly appreciated.


Marc

e-mail showing paniclog:

exim paniclog /var/log/exim4/paniclog on quixote.home has non-zero 
size, mail system might be broken. Up to 10 lines are quoted below.


2021-11-30 06:00:19 1momA3-00054k-DE ==m...@quixote.home R=local_user 
T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory 
name for mail_spool transport) not permitted
2021-11-30 06:30:19 1mrJnB-00026m-53 ==m...@quixote.home R=local_user 
T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory 
name for mail_spool transport) not permitted
2021-11-30 06:30:20 1mmEkA-9l-Jr ==m...@quixote.home R=local_user 
T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory 
name for mail_spool transport) not permitted
2021-11-30 06:30:20 1momA3-00054k-DE ==m...@quixote.home R=local_user 
T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory 
name for mail_spool transport) not permitted
2021-11-30 07:00:19 1mrJnB-00026m-53 ==m...@quixote.home R=local_user 
T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory 
name for mail_spool transport) not permitted
2021-11-30 07:00:19 1mmEkA-9l-Jr ==m...@quixote.home R=local_user 
T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory 
name for mail_spool transport) not permitted
2021-11-30 07:00:19 1momA3-00054k-DE ==m...@quixote.home R=local_user 
T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory 
name for mail_spool transport) not permitted
2021-11-30 07:30:19 1mrJnB-00026m-53 ==m...@quixote.home R=local_user 
T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory 
name for mail_spool transport) not permitted
2021-11-30 07:30:20 1mmEkA-9l-Jr ==m...@quixote.home R=local_user 
T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory 
name for mail_spool transport) not permitted
2021-11-30 07:30:20 1momA3-00054k-DE ==m...@quixote.home R=local_user 
T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory 
name for mail_spool transport) not permitted


___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


You probably used a UID/GID to clear paniclog which exim cannot write to 
because different group or no group or other rights.


Grtz

Nick

___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


Re: [DNG] exim paniclog /var/log/exim4/paniclog has non-zero size

2021-11-30 Thread Antony Stone
On Wednesday 01 December 2021 at 00:00:00, Marc Shapiro via Dng wrote:

> I am getting e-mails like the one below all the time, now.

> 2021-11-30 06:00:19 1momA3-00054k-DE ==m...@quixote.home  R=local_user
> T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory name
> for mail_spool transport) not permitted

What do you get from:

ls -al /var/mail/


Antony.

-- 
In science, one tries to tell people
in such a way as to be understood by everyone
something that no-one ever knew before.

In poetry, it is the exact opposite.

 - Paul Dirac

   Please reply to the list;
 please *don't* CC me.
___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


[DNG] exim paniclog /var/log/exim4/paniclog has non-zero size

2021-11-30 Thread Marc Shapiro via Dng

I am getting e-mails like the one below all the time, now.  I had this problem 
once before and I think that all I had to do was clear the paniclog with '> 
paniclog', but that does not seem to be working, now.  I cleared it this morning, 
and when I just checked it was filling up again.  It looks like I get three lines 
every half hour.  This is preventing me from receiving e-mails sent by a cron job 
that runs a backup script.  Any ideas on how to get rid of this and not have it 
come back would be greatly appreciated.

Marc

e-mail showing paniclog:

exim paniclog /var/log/exim4/paniclog on quixote.home has non-zero size, mail 
system might be broken. Up to 10 lines are quoted below.

2021-11-30 06:00:19 1momA3-00054k-DE ==m...@quixote.home  R=local_user 
T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory name for 
mail_spool transport) not permitted
2021-11-30 06:30:19 1mrJnB-00026m-53 ==m...@quixote.home  R=local_user 
T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory name for 
mail_spool transport) not permitted
2021-11-30 06:30:20 1mmEkA-9l-Jr ==m...@quixote.home  R=local_user 
T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory name for 
mail_spool transport) not permitted
2021-11-30 06:30:20 1momA3-00054k-DE ==m...@quixote.home  R=local_user 
T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory name for 
mail_spool transport) not permitted
2021-11-30 07:00:19 1mrJnB-00026m-53 ==m...@quixote.home  R=local_user 
T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory name for 
mail_spool transport) not permitted
2021-11-30 07:00:19 1mmEkA-9l-Jr ==m...@quixote.home  R=local_user 
T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory name for 
mail_spool transport) not permitted
2021-11-30 07:00:19 1momA3-00054k-DE ==m...@quixote.home  R=local_user 
T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory name for 
mail_spool transport) not permitted
2021-11-30 07:30:19 1mrJnB-00026m-53 ==m...@quixote.home  R=local_user 
T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory name for 
mail_spool transport) not permitted
2021-11-30 07:30:20 1mmEkA-9l-Jr ==m...@quixote.home  R=local_user 
T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory name for 
mail_spool transport) not permitted
2021-11-30 07:30:20 1momA3-00054k-DE ==m...@quixote.home  R=local_user 
T=mail_spool defer (-1): Tainted '/var/mail/marc' (file or directory name for 
mail_spool transport) not permitted

___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng