| |
| |
| |
|
Page: 1 2
Comments:
<0> Could someone help me configure my postfix server? I have it generally working, but at the moment you can send emails without authenticating if the recipient is on the same computer <1> Yeah, that is sort of the point <1> Unless you want your postfix server to act only as outgoing SMTP-server <0> is there any way to make it so it requires a p***word when sending to any recipient? <1> ilcid: So, you do not want it to be possible to send email to your users without having a p***word on your server? <0> I want users to have to authenticate against the /etc/p***wd file regardless of who their sending too <1> So, how about users from other networks sending out an e-mail via their own ISPs SMTP server. Do you want to accept mail from that SMTP server? <0> yes <0> for example, if I use http://www.zoneedit.com/smtp.html?ad=lookup to send an email from ilcid@ilcid.net to admin@ilcid.net <0> it does so successfully even with no authentication <1> right, so what you want is a sender check <0> i guess so <0> I dont have a ton of experience with mail servers <0> I followed a howto on the gentoo wiki <0> http://ilcid.net/postfix-conf.txt <0> thats my current postfix -n
<2> howdy, im been trying all day to fix a error of relay denied 554, i can receive emails but cant not sent <2> it was working before not sure what happen <2> any guru's to ***ist a bit? <2> anyone around? <2> :( <2> howdy <2> anyone around? <2> hi <2> found the proiblem <2> i can sent when i auth my outgoing <2> without it it gets rejected 554 <2> how to disable outgoing authd? <2> how do i disable auth for smtp? <2> .. <2> . <3> Hi all <3> I'm trying to do a after queue content filter <3> basically what I'm doing is Body_check if there is a line in the message, I need to send that message to original recipient and archive recipient <3> but if I do that by using sendmail command, body_check finds that line again, and send's it to my content script again... <3> is there any way to awoid this? <4> hi all... <4> i've just finished my new debug prog and noticed constant uid/gid changes from /usr/lib/postfix/master <4> what does it do during the change? <4> s/change/changes/ <5> change to postfix from root <4> and back ;), i see <4> f3ew: hmm... the changes are from src/master/master_wakeup.c, or am i wrong? <5> dunno, see the source? <6> i have configures postfix with mysql+courier+cyrus sasl2+postfixadmin when i di :.........telnet localhost 25 it comes to escape char and nothing responds <6> i am in FREEBSD <4> f3ew: yes, sorry just busy enjoing beautiful c source :) <7> :o) <4> Nurbs: hehe ;) <6> telnet localhost pop3 <6> Trying ::1... <6> telnet: connect to address ::1: Connection refused <6> can anyone help me with this error <8> hi <8> my problem is that i don't understand what's postfix want as a response in result_attribute. Do i explain? <8> when postfix reads the "rcpt to" input, example: admin@example.org <8> then postfix search mydestination to find is the server is recipient to example.org <8> and then search in alias_maps: for "admin" <8> more or less, don't you? <9> result_attribute is for ldap lookups <9> and names the attribute which has the value for the final delivery <8> rcsu: yes i use ldap. where i get info about query_filter sitax? <8> rcsu: yes i use ldap. where i get info about query_filter sintax? <9> its the standard filter <9> (&(attr=%s)(&objectCl***=asdfasdf)) <9> the sort of <8> rcsu: but what parses postfix in %s? e.g. rcpt to: mail@example.org , %s will be? <9> mail@example.org <9> thats the first lookup <8> wow... are you sure? <9> http://www.postfix.org/ADDRESS_REWRITING_README.html <9> http://www.postfix.org/ldap_table.5.html <8> this is was i supose in first place byt the lookups didn't work... <9> do you use openldap ? <8> yes <9> ok, then set loglevel 256 in your slapd.conf <9> then look at your main syslog file
<9> there are the lookups listed which are done against ldap <9> erm, dont forget to restart openldap <8> ok thanks; <8> i think that i have to learn the standard filter... <6> can any one walk me through the postfix installation in FREEBSD? <8> rcsu: the search filters that you mentioned above corresponds with the RFC2254? <8> rcsu: th postmap -q now shows me the correct output if i search the aliases but if i try to send a message to the alias i get and error (550-Mailbox unknown) any ideas? <9> postconf alias_maps must show your ldap lookup <8> yes yes <8> and if i put postconf -q aliasq@example.com i get correctmail@example.com <9> use postmap -q <alias...> -f ldap:/path/to/alias_ldap.cf <8> my query_fiter = (|(alias=%s)(mail=%)) <8> yes yes <9> ups, mail=%s is correct, not only % <8> yes its a typo <8> i have the correct in file <8> query_filter = (|(alias=%s)(mail=%s)) <8> then i'm on the begining <9> the aliases are done only with the local part, look at the logs of your ldap server <8> i know it!! <8> do you remember <8> but what parses postfix in %s? e.g. rcpt to: mail@example.org , %s will be? <8> and you answer me: <8> mail@example.org <9> simply the string for what was looked up, nothing more <8> but with aliases only look for local part, don't you? <9> and it is a difference of doing virtual alias lookups against local alias <8> i have the path to the table in #alias_maps= not in virtal_alias_maps <8> alias_maps = ldap:/etc/postfix/ldap-db-aliases.cf <8> what's the parameter for local_maps? <9> http://www.postfix.org/local.8.html <8> rcsu: what's the best way, i may forget alias_map and use only virtual_alias_maps... unified searchs in the ldap database, what do you prefer? <10> hello <11> hello, i'm trying and setup a postfix machine <11> i'm reading a book and follow instructions, but there's some dark points <10> like? <11> for example, they say you have to incoming port 25 <11> but for now, i just want to send mails <10> 25 is smtp = outgoing <10> 110 incoming <11> not receiving. So i wonder if open outbound 25 is enough <11> like say <11> iptables -A INPUT -i $eth -p TCP --sport 25 -j ACCEPT <11> satsonic: i don't think 110 is incoming mail for postfix <11> if you connect 25 on a mail server, then the 25 port is its incoming mail port <9> Oddmonger: to send mails you have to permit ports >= 1024 outbound <9> Oddmonger: port 25 is only for inbound mails <9> Oddmonger: sport 1024:65535 dport 25 for outbound <9> Port 110 is for pop3 service to get the mails to a MUA, nothing else <11> rcsu: thank you, i understand <6> i am not able to telnet to pop3 i have installe courier <6> telnet localhost 110 gives connection refused what may be wrong <11> Just__: look into your logs <11> perhaps it's your firewall which refuse connexion <11> another track to explore could be inetd <12> when i used a script for m*** mailing and ran on server, postfix started having problem <12> i have stop postfix 2-3 times, stop ldap. stop spamd and wait for a minute and start again <12> does this means postfix isnt efficient to handle 500 mails at a time, actually not even that many could be 100-200 mails in queue plus regular mails <13> i read that postfix uses smtp connection caching that is useful for bulk mails.. does anyone know if qmail does that too? <12> i dont know ;) <11> i dont understant why "hostname -f" works, but "domainname" doesn't <11> hostname -f gives me the fqdn <11> domainname gives "(none)" <11> salut Jean Jacques ;) <14> hi there im having a trouble with my imap server what can be this messge ? <14> Feb 10 18:18:42 simpson imaplogin: Connection, ip=[::ffff:127.0.0.1] <14> Feb 10 18:18:42 simpson imaplogin: chdir Maildir: No such file or directory <14> i am not using ipv6 and i am worryed about this maillog message <9> the true error is the second line <9> the first line is not an error <14> rcsu welll this is the log of the mail <14> rcsu the funny thing is that i am not using ipv6 <14> when a try to log in from squirrelmail ERROR: Connection dropped by IMAP server. <15> Anyone here knowledgable of Postfix and LDAP? I'm trying to figure out a good schema to use for it.
Return to
#postfix or Go to some related
logs:
ubuntu+xvid+pixelated Cannot lock system record for write. kylixen mozilla-dev etch #gimp #ubuntu islsm debian
#ubuntu #math perldoc implode
|
|