Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. bluethundr

    smtp host : Relay access denied

    Hey all, I fixed the problem with being able to access the FQDN of the mail host via telnet from the command line by editing mynetworks to contain the name of the mail host: mynetworks = 127.0.0.0/8 mail.exmaple.com But it appears that mail IS making its way to the mail server, but being...
  2. bluethundr

    smtp host : Relay access denied

    I've just built a postfix server in amazon EC2 with an elastic IP. And I found that while I can connect to and send emails to my mail server when I telnet to localhost when I telnet to the external FQDN I get relay denied. I'll first demonstrate success, then failure. root@mail:~# telnet...
  3. bluethundr

    mail to domain bounced, to hostname accepted

    Hello, I have setup a new postfix sertver and when I send mail to the domain (crispycode.com) the mail will bounce. If I send to the mail host name (mail.crispycode.com) the mail is shown as delivered in the logs. However if you inspect the cur directory on the command line in the user's...
  4. bluethundr

    can't telnet into courier service

    Hey NoWay! Yes thank you again for all the effort you put into getting me past these hurdles and it paid off beautifully! I am very happy/satisfied with my mail server and enjoy using it. And yes, JiffyCloud points to the zimbra server only. It's only a hobby project for my zimbra / postfix...
  5. bluethundr

    can't telnet into courier service

    NoWay.. thank you for ALL of your incredible help! Here is the happy result of all of OUR work!!! http://jiffycloud.com/ Everything works great.. I can even send to and receive from yahoo, gmail even MS live. TLS/SSL Certs are working and I've never build a better mail serve! Thanks again...
  6. bluethundr

    can't telnet into courier service

    Sorry , my user add syntax was wrong.. I can't believe I didn't catch this earlier my previous add syntax that I used as my mysql insert was: INSERT INTO users (id,name,maildir,clear) VALUES ('bluethundr@newdom.com','Tim','bluethundr/',encrypt('myUserPass')); The insert code now looks like...
  7. bluethundr

    can't telnet into courier service

    Hi NoWay.. Sorry to ask this but I am truly stumped. I really need to figure out what is telling the database to cypt the clear field of the maildb when I add new entries to it. Whenever I add entries to the database it is apparent that the clear field is being crypted. The crypt field is...
  8. bluethundr

    can't telnet into courier service

    Very useful info. Thank you! Well I did a SELECT on the user table of the maildb and got a very interesting result... mysql> SELECT id, name, clear, crypt FROM users; +---------------------------+-----------------+---------------+---------------+ | id | name |...
  9. bluethundr

    can't telnet into courier service

    Hello again! And THANKS for getting me to this point and encouraging me to continue... Well the good news is that I have a MAJOR success to report! I was using an old flavor of Ubuntu to get this going in the hopes that I could more easily install a Zimbra interface as Zimbra is lagging...
  10. bluethundr

    can't telnet into courier service

    ok I had another go at this today. I noticed in my /usr/local/lib/courier-authlib/ that my libauthmysql.so and libauthmysql.so.0 files were missing with all the other module's support files present and accounted for. So I went over to another machine that had these files and scp'd them over...
  11. bluethundr

    can't telnet into courier service

    ...] #:lsof -i COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME dhclient3 1638 dhcp 4u IPv4 4426 UDP *:bootpc amavisd-n 1662 amavis 4u IPv4 4669 TCP cloud1.newdom.com:10024 (LISTEN) postgrey 1670 postgrey 5u IPv4 4688 TCP...
  12. bluethundr

    can't telnet into courier service

    ...this morning. SO CLOSE!!! :-) [root@cloud1:~ ] #:telnet cloud1 143 Trying 127.0.0.1... Connected to cloud1.newdom.com. Escape character is '^]'. * OK [CAPABILITY IMAP4rev1 UIDPLUS CHILDREN NAMESPACE THREAD=ORDEREDSUBJECT THREAD=REFERENCES SORT QUOTA IDLE ACL ACL2=UNION] Courier-IMAP ready...
  13. bluethundr

    can't telnet into courier service

    ...NAME postgrey 1640 postgrey 5u IPv4 4590 TCP cloud1.newdom.com:60000 (LISTEN) dhclient3 1885 dhcp 4u IPv4 4280 UDP *:bootpc sshd 2294 root 3u IPv4 5777 TCP *:ssh (LISTEN) apache2 2378 root 3u IPv4 5864 TCP *:www (LISTEN)...
  14. bluethundr

    can't telnet into courier service

    Oh and one final update for this evening.. I implemented your amavis suggestions and am still getting some kind of parse error in 50-user: [root@cloud1:/etc/amavis/conf.d ] #:/etc/init.d/amavis restart Stopping amavisd: (not running). Starting amavisd: Error in config file...
  15. bluethundr

    can't telnet into courier service

    ...against courier imap using a telnet session. It is abundantly clear that postfix and courier are simply not on speaking terms as of now. ***************************************************** [root@cloud1:/etc/init.d ] #:telnet cloud1 143 Trying 127.0.0.1... Connected to cloud1.newdom.com...
  16. bluethundr

    amavis postfix integration problem

    Amavis is apparently doing it's job however. I tried to send the system the eicar.com attachment and (thankfully) got this response... msmtp: the server did not accept the mail msmtp: server message...
  17. bluethundr

    amavis postfix integration problem

    Update.. I decided to reboot the whole box and lo and behold, amavis runs! root@cloud1:~# ps -ef | grep amavis amavis 1823 1 0 14:20 ? 00:00:00 amavisd (master) amavis 1883 1823 0 14:20 ? 00:00:00 amavisd (virgin child) amavis 1884 1823 0 14:20 ? 00:00:00...
  18. bluethundr

    amavis postfix integration problem

    Thanks for the tips! I took your advice and tried moving amavis to a higher number. I moved amavis from S19amavis to S75amavis in my current runlevel which is runlevel 4. Before: root@cloud1:/etc/rc4.d# ls README S19postgrey S20courier-authdaemon S20getsshkey S20saslauthd S70pppd-dns...
  19. bluethundr

    amavis postfix integration problem

    ...CentOS due to the dearth of Red Hat-based packages for the components I need. Prior to my attempt to integrate Amavis with Postfix I was sending *AND* receiving e-mail with impunity! However, f I do a telnet test with Amavis enabled... root@cloud1:~# telnet cloud1 25 Trying 127.0.0.1...
  20. bluethundr

    can't telnet into courier service

    Ah sorry for not taking a closer look at the logs before posting.. genuinely stupid of me... I seem to have goofed in forgetting to start postfix before courier... now the courier daemon has been started and is listening on 25 and binding to 0.0.0.0 [root@cloud1 ~]# tail -f /var/log/maillog...

Part and Inventory Search

Back
Top