-
Happens on all versions up to and including 2.2.3 with a binary installer.
The same problem shows up either using EMU_TEMPLATE_PATH environment variable or using the emu config dialog in the GUI.
Only removing the trailing slash makes it work again.
[myuser@mybox bin]$ EMU_TEMPLATE_PATH=/my/home/dir/data/time/etc/ ./Emu
/my/home/dir
Emu: ./generic/emu_vec.h:265: T&...
2009-03-20 21:52:24 UTC in The Emu Speech Database System
-
# you're on the right track there...
#
# try cut & paste of this into your shell.
locate mysql.sock
locate mysqld.sock
# now one of the above should have found you its location, if not
# then try this.
find / -name 'mysql*.sock'
# once you know the name...
file $SOCKNAME
# if that did a file not found, or didn't say it was a socket, then
# you have a more serious problem.
2009-03-09 08:40:28 UTC in Sendmail-SQL
-
A Milter filter would be your best bet for this, because it is not inately supported by Sendmail, I think.
You could write one in perl.
2009-03-09 08:37:58 UTC in Sendmail-SQL
-
Thought about this some more this morning, and it seemed a good idea to write something to the internet at large about the state of play with this thing.
If I'm going to ever do more than just supply binary packages for the same patch re-applied to the latest version of sendmail (which if you're using this system, you should be able to do yourself anyway), then here will be my starting point:
2009-03-09 08:36:31 UTC in Sendmail-SQL
-
A combination of my prior patch IDs(#1914929,#1910018) to this project. I got quite bored of maintaining two separate ones.
This patch takes a base 1.0.5 version, and:
- Adds the 'missing error callback' stuff I did to stop noisy milter errors.
- Adds the 'PassAfterMailerTable' for recipients.
- Adds a 'PassAfterVirtuserTable' for senders (don't try to verify locally known-good...
2008-03-21 19:31:20 UTC in BM-Milter
-
Makes no sense for this to be done on sender verify, as senders won't be in your mailertable, whereas known private-forward recipients will be, hence I've rewritten it again to use separate callbacks for the rcpt and mail from, which just flag PAMT differently.
File Added: bm-milter-1.0.5-passafter.patch.
2008-03-19 13:39:12 UTC in BM-Milter
-
File Added: bm-milter-1.0.5-missingcb.patch.
2008-03-15 21:11:13 UTC in BM-Milter
-
Replaced the patch version with an improved one that has a toggle switch for the error callbacks to be verbose.
2008-03-15 21:03:07 UTC in BM-Milter
-
File Added: bm-milter-1.0.5-missingcb.patch.
2008-03-15 21:01:24 UTC in BM-Milter
-
Although it's not fatal, I got annoyed by the messages of this type:
... sendmail[]: m2FJiKv7007674: Milter (bm-milter): write(D) returned -1, expected 97: Broken pipe
... sendmail[]: m2FJiKv7007674: Milter (bm-milter): to error state
There's a missing abort callback, and probably others, which means that Sendmail/Milter falls back to default error states, which is what that message is...
2008-03-15 19:54:13 UTC in BM-Milter