| |
| |
| |
|
Page: 1 2
Comments:
<0> is there any way (patch, addon, etc) to get qmail to check with a remote smtp server if a recipiant is valid? <1> hey everybody... having some qmail forwarding issues... anyone want to take a stab at a diagnosis? <1> ping? <2> how do i send an email from the command line? <1> qmail-inject I believe <2> ah thanks veggieguy <1> anybody else alive in here? <2> hmm there's no man page, and no -h or --help options... <1> hmm... maybe your qmail installation isn't complete? i have a man page on my system. <2> doh <1> try this <1> http://www.die.net/doc/linux/man/man8/qmail-inject.8.html <2> maybe i can find one online then <2> oh, thanks <1> i'm getting a lot of these errors in my log <1> delivery 4507: deferral: qmail-local_crashed./
<1> seems like an issue, but I can't find any info on it <2> http://tinyurl.com/azeq3 <1> thx ezra... i've dug through most of those already <1> i should have said i can't find anything *helpful* about it :) <2> ahh <1> ezra, you have a functional qmail server at your disposal? <1> or does anybody out there? would like to find somebody who could try a simple forwarding test for me <1> about to kick qmail to the curb and try postfix <1> even though i've been running qmail for years <2> veggieguy: sorry, yes <2> i run qmail+vpopmail+mysql <2> i actually had someone else install that particular thing on my server, though <2> which is why i'm not sure if the manpages were properly installed or not <2> whenever i try the qmail-inject command it seems to just hang though <3> Hi <3> Anybody? <3> Hi, how can i tell qmail to deliver and email listed in locals (or me) file throw a remote server?? <4> I'd think the best way would be alias files. <4> But I don't know a whole lot. <3> alias isn't good for this, i need to relay and entery domain <3> complete domain.. <4> hmmmm.... <4> Is the domain the same? <4> Can you use rcpthosts? <4> *There may be a batter way <4> s/batter/better <3> Yes, its the same. The "serverA" it's just a sender server, but "serverB" as the MX records and users <3> Well.. removing the domain from locals file work, i don't know if its the best/better solution.. but work <4> hmmmm... <4> Well, I don't have any better solutions. :) <3> i cant find another option with control files and man pages don't tell nothing about that, just talk about smtproutes for remote address <3> well, back to work :D <3> thanks anyway TJNII <4> lol <4> np <4> I didn't help much, but that's ok! <4> s/drinkin/drinking <4> s/top/to <2> anyone know how to send an email from the command line using a script? <4> qmail-inject <2> yes but how, nothing i seem to try does anything but lock up my screen <4> create a file with the correct headers and body <2> and then i can't even ctrl-c out of it <2> ahh, i see <4> and then qmail-injact < file <4> s/qmail-injact/qmail-inject <2> hmm i wonder where i could find an example of such a file <2> to see how the headers should be formatted <4> I'm gonna flood the channel, but this section of my script works. <4> # Generate a header. <4> echo "From: listmaster@prisum.org" > /tmp/genMD.tmp/automsg.create.$UNAME.txt <4> echo "To: $UNAME@prisum.org" >> /tmp/genMD.tmp/automsg.create.$UNAME.txt <4> echo "Subject: maildir created successfully" >> /tmp/genMD.tmp/automsg.create.$UNAME.txt <4> echo "" >> /tmp/genMD.tmp/automsg.create.$UNAME.txt <4> # Add the body <4> cat $MSGPATH/automsg.create.txt >> /tmp/genMD.tmp/automsg.create.$UNAME.txt <4> # Send an email to user $UNAME <4> /var/qmail/bin/qmail-inject < /tmp/genMD.tmp/automsg.create.$UNAME.txt <4> FROM: TO: and SUBJECT: are the bare minimum, afaik
<4> and the body must be seperated by a blank line <2> nice, thanks TJNII! <4> np, glad I could help <5> lol <6> how do i change the user qmail-send runs as <6> for some reason its trying to run as qmailr <7> Hi folks... i get loads of spam to <non-existant addresses>@<my private domain>. What's the qmail way to drop (not bounce) mail to non-existant addresses? <7> i should add that those are random non-existant addresses (I do know how to forward known bad addresses to /dev/null using dotfiles in ~alias) <7> "echo >~alias/.qmail-default '&/dev/null'" should be my friend. <8> that isn't a valid .qmail file <8> man dot-qmail <7> the ampersand was pretty stupid. but it doesn't work without and now i'm kinda lost. <7> Feb 6 14:44:42 zappa qmail: 1139233482.083740 delivery 13552: deferral: Unable_to_write_/dev/null:_invalid_argument._(#4.3.0)/ <8> if what you ACTUALLY WANT is a .qmail file that throws away your mail (drops it silently on the floor), just put a single '#' character in it <7> sweet, tyvm <8> but I don't see the point myself. you'd be FAR better off using the links in the /topic to implement local user checking during SMTP <7> if the main point there is to avoid the SMTP data, the mail is already in the local network when it arrives on my machine <7> the machine accepting the mail from the outside world doesn't have an idea what users exist in my private domain. <8> that's your major problem, then. I suggest you fix that. <8> otherwise, you're in *m***ive* violation of the RFCs by dropping all your mail on the floor after promising to deliver it or bounce it <9> look <9> cat .qmail-default <9> &trash <8> that forwards the mail to a local user named trash (in your default domain) <9> cat .qmail <9> | /usr/local/bin/refuse.sh <9> .qmail is in home at user trash <9> cat /usr/local/bin/refuse.sh <9> #!/bin/sh <9> echo "retorno ignorado" <9> exit 99 <9> exit 99 send msg to /dev/null <9> ;D <8> so in other words you invoked a whole lot of processes that do nothing other than drop incoming mail on the floor and log error messages in non-English words <7> greycat, i don't want to have my workstation talk SMTP to the outside world. snap, what i'm trying to avoid is to see a couple of dozen double-bounces from non-existant spam senders. <8> so it's slow *and* it violates the RFCs! woot! <8> 4-te****ingleadingpunctuationthatcan'tbetabcompleted: nobody said your workstation has to listen on port 25. just that whoever *does* listen on port 25 needs to know what your acceptable local usernames are. <7> well, the RFC-way is probably not to drop that mail but to forward it to my mail account, then have TMDA reply with a "confirm this" message and drop them after a week without reply. but then i'll still get the bounces for the "confirm this" messages. <8> oh, I see. you're l33t. <8> I should have guessed from the punctuation in the nick. <8> carry on then. forget I said anything. any sufficiently simple and elegant solution would obviously be totally unacceptable. <7> well, actually you made my drop my plan to silently drop the mail, the RFC argument stuck. <7> I'll find a way to filter the uninteresting bounces in my MUA. <9> greycat : this message "retorno ignorado" just for current log ;) <10> Somebody this having problems with hotmail? "Subject: Delivery Status Notification (Delay) " <6> how can i change which user qmail-send starts up as, it doesn't seem to be in the run script. I've had to change UIDs for some users and now qmail-send is trying to run as qmailr instead of qmails <7> Jimme: if i remember correctly, UIDs are set for the binaries at compile time? <6> i shall try a quick recompile then <10> Somebody this having problems with send and receive emails hotmail? "Subject: Delivery Status Notification (Delay) " <11> how can I tell qmail to bind to a certain IP ? <12> yeah, see tcpserver arguments <11> I can't find how the tcpserver gets called ? <11> is it in the rc scripts of qmail ? <11> got it <12> rc <13> hi. I just changed in my .procmail file spam***asin to spamc, but now, the system does not tag spam mails anymore.. /etc/mail/spam***asin/local.cf is same, spamd is runnig with -D -d -m10 -v -u vpopmail -H /home/vpopmail/ . I'm missing something? <13> and /home/vpopmail/.spam******in/user_prefs exists.. <11> is there a way to stop this supervise process ? I saw that I have svscanboot on my inittab .. is there an rc script to start and stop those services ? <14> xmlaxis: spam***asin vpopmail-support is seriosly broken, dont use it. <13> glance, it works fine with spam******in in procmail file, but it highly loads the CPU, beacuse he loads an instance of perl for every scan, and spamd must be faster <13> anyway, what you suggest to use? <14> if you want your users to be able to modify ther own user_prefs i whoud to on a sql-solution. <14> currently im using a patched spamd in vpopmail-mode, it is allmost good but not enuff. <15> how can i find out where the msgs in my queue are coming from, or what their from headers are... cause i have 2k emails in my queue.. and I don't think they should be there <16> agentbob: they will be there untill you take care of users validation <15> meaning? <16> that <15> i don't have relaying open, but somehow spammers are filling up my queue <15> and the records in qmail-qread for sender are empty <15> 1 Feb 2006 13:38:04 GMT #4553 2376 <> <15> remote humbertles@my.jdu.ru <16> agentbob: I said why, coz you are ignorant to users validation <15> my only users are me, and php. does qmail need a patch for smtpauth? <16> do you run smtp service?
Return to
#qmail or Go to some related
logs:
vlc brighter ubuntu #oe SQL APROBATION /etc/x11/x is not executable ubuntu sqlite3SelectDelete lol jews suse 10 remote desktop connection lpr: unable to print file: client-error-not-found NX host not found wxgtk bloated
|
|