Linux - GeneralThis Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
I had no problems with evolution using fedora 8, but since upgrading to fedora 10 evolution has developed a nasty habit of resending all emails from me to anyone that happened yesterday if I reboot the machine.
I don't reboot often, but a power outage forced it yesterday and it will happen, so what gives? Is there some configuration parameter that I need to change and am not aware of (looked and saw nothing obvious).
Evolution is NOT using smtp, but does used my email providers web email services directly.
All messages move from outbox to sent almost immediately (4-5 seconds, longer if big attachments).
This problem only occurs if I reboot.
Perhaps I should shut down evolution manually and force a flush of it's buffers. Of course, that is hard to remember when the UPS is screaming that the power is off and I am trying to shut down as fast as possible.
That is a guess, but the first one I have.
Strange that this never happened with the prior evolution (fed. 8).
Things go from the outbox in seconds as stated, but I do NOT see them in the SENT box right away. There appears to be some delay. I do NOT see any emails that I sent to day there. Perhaps there is some hidden box that holds recent things and that is the culprit. I don't see it anywhere in ~/.evolution - digging.
Thanks for the suggestion - since this only happens on reboot - here is what I did (as root)
cd /usr/bin; mv evolution evolution_bin
cat > evolution <<EOF
#!/bin/sh -
cd /tmp
if [ -f evolution.log_1 ]; then mv -f evolution.log_1 evolution.log_2; fi
if [ -f evolution.log ]; then mv -f evolution.log_1 evolution.log_1; fi
export CAMEL_DEBUG=all
/usr/bin/evolution_bin > /tmp/evolution.log 2>&1
EOF
chmod +x evolution
Then I restarted it, so I will now have a running log (HUGE).
Not sure what I will do when I find the problem as I doubt I am up to fixing source (the plate is already too full) and I suspect that there is a problem there. This never happened with fedora8, only with 10.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.