Penguin
Blame: QmailScannerNotes
EditPageHistoryDiffInfoLikePages
Annotated edit history of QmailScannerNotes version 3, including all changes. View license author blame.
Rev Author # Line
1 AristotlePagaltzis 1 !! Start up script stalls on QmailScanner launch
2
3 When placing the line to set the EnvironmentVariable
4
5 QMAILQUEUE="/var/qmail/bin/qmail-scanner-queue.pl"
6
7 in __/service/qmail-smtpd/run__, __qmail-smtpd__ won't start up because the run script stalls at that point. The problem is that the QmailScanner script does not background itself, so you have to tell the shell to do that by appending a __&__:
8
9 QMAILQUEUE="/var/qmail/bin/qmail-scanner-queue.pl __&__"
2 DrewBroadley 10
11 Note: This is for ONLY if you are having issues with the qmail-scanner-queue.pl file stalling the startup of qmail-smtp. This is a Hack and is not guaranteed to work!
3 AristotlePagaltzis 12
13 !! /usr/bin/perl: error while loading shared libraries: libc.so.6: cannot load shared object file: Cannot allocate memory.
14
15 The memory softlimit is too small. In my case, increasing it from 2,000,000 to 3,000,000 solved the issue. --SreejithKalyat