• Getting SMTP working

    From Mike Powell@1:103/705 to All on Sun Apr 9 13:54:00 2017
    I have tried, off and on for a while, to get SMTP mail flowing from my
    board. I suspect that the ISP is cutting it off, but I am not real sure I
    am even getting that far into the outside world. :)

    Here is the type of error I see:

    4/9 13:36:55 mail 0000 SEND Message #159 from Dumas Walker to user@somewhere.com
    4/9 13:36:55 mail 0000 SEND getting message text
    4/9 13:36:55 mail 0016 SEND resolving SMTP hostname:
    4/9 13:36:55 mail 0016 !SEND failure resolving hostname:
    4/9 13:36:55 mail 0000 !Delivery attempt #3 FAILED (Failed to resolve SMTP hostname: ) for message #159 from Dumas Walker to user@somewhere.com

    "user@somewhere.com" is text I substituted in for my actual e-mail account, which is an account that does exist and does receive mail from the outside world.

    I am trying to use the alt SMTP port 587 because I know that 25 is blocked, and I have opened that port in my router. telnetting to that port shows
    the following:

    #:~$ telnet capcity2.synchro.net 587
    Trying (ip address here)...
    Connected to capcity2.synchro.net.
    Escape character is '^]'.
    220 capcity2.synchro.net Synchronet SMTP Server 1.508-Linux Ready

    So it is answering. I am wondering if my sbbs.ini settings are wrong somewhow. Here they are:

    [Mail]
    .AutoStart=true
    .LogFile=1
    .MaxClients=10
    .MaxInactivity=120
    .Interface=LOOK
    .LinesPerYield=10
    .MaxDeliveryAttempts=50
    .MaxRecipients=100
    .RescanFrequency=3600
    ; .SMTPPort=25
    .SMTPPort=587
    .POP3Port=110
    .DefaultUser=sysop
    .DNSBlacklistHeader=X-DNSBL
    .DNSBlacklistSubject=SPAM
    ;.RelayServer=
    ;.RelayPort=
    .; The following 2 keys are used if the RelayServer requires
    authentication (SMTP AUTH)
    .; Must also set one of the RELAY_AUTH options
    ;.RelayUsername=
    ;.RelayPassword=
    .DNSServer=192.168.0.1
    .POP3Sound=
    .InboundSound=
    .OutboundSound=
    .Options=ALLOW_POP3 | RELAY_TX | DEBUG_TX | DEBUG_RX_HEADER .MaxMsgSize=10485760
    .DefaultCharset=
    .HostName=capcity2.synchro.net

    I have tried it with the DNSServer left blank also, and have tried it with the RelayServer info filled in with my ISP info (IP and Port).

    Let me know if you see something that is glaringly wrong. Thanks!

    ---
    * Synchronet * CAPCITY2 * capcity2.synchro.net * 1-502-875-8938
    * Origin: Vertrauen - vert.synchro.net (1:103/705)
  • From Bill McGarrity@1:266/404 to Mike Powell on Sun Apr 9 17:43:00 2017
    Mike Powell wrote to All on 04-09-17 13:54 <=-

    I have tried, off and on for a while, to get SMTP mail flowing from my board. I suspect that the ISP is cutting it off, but I am not real
    sure I am even getting that far into the outside world. :)

    .DNSBlacklistSubject=SPAM
    ;.RelayServer=
    ;.RelayPort=
    .; The following 2 keys are used if the RelayServer requires authentication (SMTP AUTH)
    .; Must also set one of the RELAY_AUTH options
    ;.RelayUsername=
    ;.RelayPassword=
    .DNSServer=192.168.0.1
    I have tried it with the DNSServer left blank also, and have tried it
    with the RelayServer info filled in with my ISP info (IP and Port).

    Let me know if you see something that is glaringly wrong. Thanks!

    Just a wild guess here... but if you're using your provider as a relay, you need to do RelayUserName & RelayPassword as well. Try Transfer port of 465 and Submission port of 587 while clicking Login under Relay Server.


    --

    Bill

    Telnet: tequilamockingbirdonline.net
    Web: bbs.tequilamockingbirdonline.net
    FTP: ftp.tequilamockingbirdonline.net:2121
    IRC: irc.tequilamockingbirdonline.net Ports: 6661-6670 SSL: +6697
    Radio: radio.tequilamockingbirdonline.net:8010/live


    ... Look Twice... Save a Life!!! Motorcycles are Everywhere!!!
    === MultiMail/Win32 v0.50
    --- SBBSecho 3.00-Win32
    * Origin: TequilaMockingbird Online - Toms River, NJ (1:266/404)
  • From Tony Langdon@3:633/410 to Mike Powell on Mon Apr 10 08:29:00 2017
    Mike Powell wrote to All <=-

    4/9 13:36:55 mail 0000 SEND Message #159 from Dumas Walker to user@somewhere.com
    4/9 13:36:55 mail 0000 SEND getting message text
    4/9 13:36:55 mail 0016 SEND resolving SMTP hostname:
    4/9 13:36:55 mail 0016 !SEND failure resolving hostname:
    4/9 13:36:55 mail 0000 !Delivery attempt #3 FAILED (Failed to resolve
    SMTP hostname: ) for message #159 from Dumas Walker to
    user@somewhere.com

    This is a DNS error. For some reason, Synchronet can't resolve the relevant hostname.

    "user@somewhere.com" is text I substituted in for my actual e-mail account, which is an account that does exist and does receive mail from the outside world.

    I am trying to use the alt SMTP port 587 because I know that 25 is blocked, and I have opened that port in my router. telnetting to that port shows the following:

    You would need to use a relay server for outbound email. I don't see one in your configuration. Normal servers don't accept connections from other servers on port 587 (it's only for users to submit email). Double check the documentation for using a relay server. I can't advise on the specifics (beyond my background knowledge of SMTP), because I'm not using that configuration. I connect directly on port 25 in both directions (geek friendly ISP :) ).

    #:~$ telnet capcity2.synchro.net 587 <-- what are you testing here? The
    test does not correspond with your configuration below
    Trying (ip address here)...
    Connected to capcity2.synchro.net.
    Escape character is '^]'.
    220 capcity2.synchro.net Synchronet SMTP Server 1.508-Linux Ready

    So it is answering. I am wondering if my sbbs.ini settings are wrong somewhow. Here they are:

    [Mail]
    .AutoStart=true
    .LogFile=1
    .MaxClients=10
    .MaxInactivity=120
    .Interface=LOOK
    .LinesPerYield=10
    .MaxDeliveryAttempts=50
    .MaxRecipients=100
    .RescanFrequency=3600
    ; .SMTPPort=25
    .SMTPPort=587
    .POP3Port=110
    .DefaultUser=sysop
    .DNSBlacklistHeader=X-DNSBL
    .DNSBlacklistSubject=SPAM
    ;.RelayServer=
    ;.RelayPort=
    .; The following 2 keys are used if the RelayServer requires authentication (SMTP AUTH)
    .; Must also set one of the RELAY_AUTH options
    ;.RelayUsername=
    ;.RelayPassword=
    .DNSServer=192.168.0.1
    .POP3Sound=
    .InboundSound=
    .OutboundSound=
    .Options=ALLOW_POP3 | RELAY_TX | DEBUG_TX | DEBUG_RX_HEADER .MaxMsgSize=10485760
    .DefaultCharset=
    .HostName=capcity2.synchro.net

    I have tried it with the DNSServer left blank also, and have tried it
    with the RelayServer info filled in with my ISP info (IP and Port).

    Let me know if you see something that is glaringly wrong. Thanks! <--
    Check the Synchronet documentation, I'm sure it has specifics for relaying. Your testing and configuration seem a bit at odds. Like RelayServer is blank, I suspect HostName below is meant to be the hostname you provide to the relay server to idnetify yourself.

    DM or someone else will know the specifics, but hope this helps.


    ... Respect is a rational process. McCoy, The Galileo Seven, stardate 2822.3. --- MultiMail/Win32 v0.49
    * Origin: Freeway BBS - freeway.apana.org.au (3:633/410)
  • From Digital Man@1:103/705 to Mike Powell on Mon Apr 10 17:50:12 2017
    Re: Getting SMTP working
    By: Mike Powell to All on Sun Apr 09 2017 01:54 pm

    I have tried, off and on for a while, to get SMTP mail flowing from my board. I suspect that the ISP is cutting it off, but I am not real sure I am even getting that far into the outside world. :)

    Here is the type of error I see:

    4/9 13:36:55 mail 0000 SEND Message #159 from Dumas Walker to user@somewhere.com
    4/9 13:36:55 mail 0000 SEND getting message text
    4/9 13:36:55 mail 0016 SEND resolving SMTP hostname:
    4/9 13:36:55 mail 0016 !SEND failure resolving hostname:
    4/9 13:36:55 mail 0000 !Delivery attempt #3 FAILED (Failed to resolve SMTP hostname: ) for message #159 from Dumas Walker to user@somewhere.com

    "user@somewhere.com" is text I substituted in for my actual e-mail account, which is an account that does exist and does receive mail from the outside world.

    I am trying to use the alt SMTP port 587 because I know that 25 is blocked, and I have opened that port in my router. telnetting to that port shows
    the following:

    #:~$ telnet capcity2.synchro.net 587
    Trying (ip address here)...
    Connected to capcity2.synchro.net.
    Escape character is '^]'.
    220 capcity2.synchro.net Synchronet SMTP Server 1.508-Linux Ready

    So it is answering. I am wondering if my sbbs.ini settings are wrong somewhow. Here they are:

    [Mail]
    AutoStart=true
    LogFile=1
    MaxClients=10
    MaxInactivity=120
    Interface=LOOK
    LinesPerYield=10
    MaxDeliveryAttempts=50
    MaxRecipients=100
    RescanFrequency=3600
    ; SMTPPort=25
    SMTPPort=587
    POP3Port=110
    DefaultUser=sysop
    DNSBlacklistHeader=X-DNSBL
    DNSBlacklistSubject=SPAM
    ; RelayServer=
    ; RelayPort=
    ; The following 2 keys are used if the RelayServer requires authentication (SMTP AUTH)
    ; Must also set one of the RELAY_AUTH options
    ; RelayUsername=
    ; RelayPassword=
    DNSServer=192.168.0.1
    POP3Sound=
    InboundSound=
    OutboundSound=
    Options=ALLOW_POP3 | RELAY_TX | DEBUG_TX | DEBUG_RX_HEADER
    MaxMsgSize=10485760
    DefaultCharset=
    HostName=capcity2.synchro.net

    I have tried it with the DNSServer left blank also, and have tried it with the RelayServer info filled in with my ISP info (IP and Port).

    Let me know if you see something that is glaringly wrong. Thanks!

    First, you have to clarify and focus on either *sending* SMTP mail or *receiving* SMTP mail as they have different problems and solutions. Here are a couple FAQs:
    http://wiki.synchro.net/faq:tcpip#send_mail http://wiki.synchro.net/faq:tcpip#receive_mail

    digital man

    Synchronet/BBS Terminology Definition #22:
    FOSSIL = Fido/Opus/SEAdog Standard Interface Layer
    Norco, CA WX: 73.8oF, 25.0% humidity, 7 mph E wind, 0.00 inches rain/24hrs
    --- SBBSecho 3.00-Win32
    * Origin: Vertrauen - vert.synchro.net (1:103/705)
  • From Mike Powell@1:103/705 to Tony Langdon on Mon Apr 10 18:22:00 2017
    This is a DNS error. For some reason, Synchronet can't resolve the relevant hostname.

    It does that for any hostname, including ones I know exist, so I am pretty
    sure I have something set up wrong. :)

    You would need to use a relay server for outbound email. I don't see
    one in your configuration. Normal servers don't accept connections
    from other servers on port 587 (it's only for users to submit email). Double check the documentation for using a relay server. I can't
    advise on the specifics (beyond my background knowledge of SMTP),
    because I'm not using that configuration. I connect directly on port
    25 in both directions (geek friendly ISP :) ).

    Thanks, I need to read up then and figure out how to get the relay server bit set up!

    #:~$ telnet capcity2.synchro.net 587 <-- what are you testing here? The
    test does not correspond with your configuration below

    To see if port 587 is open on my system (it was), which may not be necessary.

    Thanks!
    Mike


    ... "42? 7 and a half million years and all you can come up with is 42?!"
    --- MultiMail/IBMPcDos v0.43
    * Synchronet * CAPCITY2 * capcity2.synchro.net * 1-502-875-8938
    * Origin: Vertrauen - vert.synchro.net (1:103/705)
  • From Mike Powell@1:103/705 to Bill McGarrity on Mon Apr 10 18:23:00 2017
    Just a wild guess here... but if you're using your provider as a relay, you need to do RelayUserName & RelayPassword as well. Try Transfer
    port of 465 and Submission port of 587 while clicking Login under Relay Server.

    Sounds like a good guess, too. :) I will have to read the docs, play around with it some, and see what happens. Thanks!


    ... 2 + 2 = 5 for extremely large values of 2.
    --- MultiMail/IBMPcDos v0.43
    * Synchronet * CAPCITY2 * capcity2.synchro.net * 1-502-875-8938
    * Origin: Vertrauen - vert.synchro.net (1:103/705)
  • From Mike Powell@1:103/705 to Tony Langdon on Mon Apr 10 19:16:42 2017
    This is a DNS error. For some reason, Synchronet can't resolve the relevant hostname.

    Well, I was able to get the outbound mail working by using my vert QWK account as the relay server entry, just like the wiki says. :) Now, I just need to see if the responses make it back or not. :)

    Mike

    ---
    * Synchronet * CAPCITY2 * capcity2.synchro.net * 1-502-875-8938
    * Origin: Vertrauen - vert.synchro.net (1:103/705)
  • From Mike Powell@1:103/705 to Bill McGarrity on Mon Apr 10 19:18:20 2017
    Just a wild guess here... but if you're using your provider as a relay, you need to do RelayUserName & RelayPassword as well. Try Transfer port of 465 and Submission port of 587 while clicking Login under Relay Server.


    Your wild guess was correct. :) I was able to get the outbound mail working by using my vert QWK account as the relay server/user/password entries, just like the wiki says. :) Now, I just need to see if the responses make it back or not. :)

    Mike

    ---
    * Synchronet * CAPCITY2 * capcity2.synchro.net * 1-502-875-8938
    * Origin: Vertrauen - vert.synchro.net (1:103/705)
  • From KK4QBN@1:103/705 to Mike Powell on Mon Apr 10 22:00:22 2017
    Re: Getting SMTP working
    By: Mike Powell to All on Sun Apr 09 2017 01:54 pm

    I have tried it with the DNSServer left blank also, and have tried it with the RelayServer info filled in with my ISP info (IP and Port).

    Let me know if you see something that is glaringly wrong. Thanks!
    [0m
    [0m


    Set your DNS server to your ISP's DNS server, not your routers IP, set your relay server to Robs relay server.

    mail.synchro.net port 25

    your QWKID and PASSWD.

    --

    Tim Smith (KK4QBN)
    KK4QBN BBS

    ---
    * Synchronet * KK4QBN + (706)-422-9538 + kk4qbn.synchro.net + 24/7/365
    * Origin: Vertrauen - vert.synchro.net (1:103/705)
  • From Tony Langdon@3:633/410 to Mike Powell on Tue Apr 11 12:13:00 2017
    Mike Powell wrote to Tony Langdon <=-

    It does that for any hostname, including ones I know exist, so I am
    pretty sure I have something set up wrong. :)

    Well, it's looking up a non existent host. :)

    You would need to use a relay server for outbound email. I don't see
    one in your configuration. Normal servers don't accept connections
    from other servers on port 587 (it's only for users to submit email). Double check the documentation for using a relay server. I can't
    advise on the specifics (beyond my background knowledge of SMTP),
    because I'm not using that configuration. I connect directly on port
    25 in both directions (geek friendly ISP :) ).

    Thanks, I need to read up then and figure out how to get the relay
    server bit set up!

    There is a pretty good write up in the wiki, if I recall. I only skimmed it, out of curiosity, as I didn't need to use that feature.

    #:~$ telnet capcity2.synchro.net 587 <-- what are you testing here? The
    test does not correspond with your configuration below

    To see if port 587 is open on my system (it was), which may not be necessary.

    OK, a red herring (has nothing to do with outbound mail). :)


    ... Limitations are stepping stones to creativity.
    --- MultiMail/Win32 v0.49
    * Origin: Freeway BBS - freeway.apana.org.au (3:633/410)
  • From Tony Langdon@3:633/410 to Mike Powell on Tue Apr 11 12:14:00 2017
    Mike Powell wrote to Tony Langdon <=-

    @MSGID: <58EC32AE.4345.fido-syncsyso@freeway.apana.org.au>
    @TZ: 40f0
    This is a DNS error. For some reason, Synchronet can't resolve the relevant hostname.

    Well, I was able to get the outbound mail working by using my vert QWK account as the relay server entry, just like the wiki says. :) Now, I just need to see if the responses make it back or not. :)

    You need something that will relay email inbound for you. I can't recall what the wiki suggests.


    ... Free are those who dream dreams.
    --- MultiMail/Win32 v0.49
    * Origin: Freeway BBS - freeway.apana.org.au (3:633/410)
  • From Bill McGarrity@1:266/404 to Mike Powell on Mon Apr 10 23:58:00 2017
    Mike Powell wrote to Bill McGarrity on 04-10-17 18:23 <=-

    Just a wild guess here... but if you're using your provider as a relay, you need to do RelayUserName & RelayPassword as well. Try Transfer
    port of 465 and Submission port of 587 while clicking Login under Relay Server.

    Sounds like a good guess, too. :) I will have to read the docs, play around with it some, and see what happens. Thanks!

    Welcome...


    --

    Bill

    Telnet: tequilamockingbirdonline.net
    Web: bbs.tequilamockingbirdonline.net
    FTP: ftp.tequilamockingbirdonline.net:2121
    IRC: irc.tequilamockingbirdonline.net Ports: 6661-6670 SSL: +6697
    Radio: radio.tequilamockingbirdonline.net:8010/live


    ... Look Twice... Save a Life!!! Motorcycles are Everywhere!!!
    === MultiMail/Win32 v0.50
    --- SBBSecho 3.00-Win32
    * Origin: TequilaMockingbird Online - Toms River, NJ (1:266/404)
  • From Bill McGarrity@1:266/404 to Mike Powell on Tue Apr 11 00:06:00 2017
    Mike Powell wrote to Bill McGarrity on 04-10-17 19:18 <=-

    Just a wild guess here... but if you're using your provider as a relay, you need to do RelayUserName & RelayPassword as well. Try Transfer port of 465 and Submission port of 587 while clicking Login under Relay Server.


    Your wild guess was correct. :) I was able to get the outbound mail working by using my vert QWK account as the relay server/user/password entries, just like the wiki says. :) Now, I just need to see if the responses make it back or not. :)

    I had to use a reflector for that to happen. I have a sub-domain of mail.tequilamockingbirdonline.net and no-ip reflects port 25 to port 465 so synch can get it and process it.


    --

    Bill

    Telnet: tequilamockingbirdonline.net
    Web: bbs.tequilamockingbirdonline.net
    FTP: ftp.tequilamockingbirdonline.net:2121
    IRC: irc.tequilamockingbirdonline.net Ports: 6661-6670 SSL: +6697
    Radio: radio.tequilamockingbirdonline.net:8010/live


    ... Look Twice... Save a Life!!! Motorcycles are Everywhere!!!
    === MultiMail/Win32 v0.50
    --- SBBSecho 3.00-Win32
    * Origin: TequilaMockingbird Online - Toms River, NJ (1:266/404)
  • From Mike Powell@1:103/705 to KK4QBN on Tue Apr 11 18:03:00 2017
    Set your DNS server to your ISP's DNS server, not your routers IP, set your relay server to Robs relay server.

    mail.synchro.net port 25

    your QWKID and PASSWD.

    Tim,
    Thanks, I did do that (but using 587 because my ISP blocks 25 outbound) and outbound mail is working now. I just need to figure out how to get the
    inbound working. I send email to capcity2.synchro.net and it never arrives.
    It also never bounces back??? Makes it more difficult to understand what is happening to it. :)

    Mike


    ... 2 + 2 = 5 for extremely large values of 2.
    --- MultiMail/IBMPcDos v0.43
    * Synchronet * CAPCITY2 * capcity2.synchro.net * 1-502-875-8938
    * Origin: Vertrauen - vert.synchro.net (1:103/705)
  • From Mike Powell@1:103/705 to Digital Man on Tue Apr 11 18:06:00 2017
    First, you have to clarify and focus on either *sending* SMTP mail or *receiving* SMTP mail as they have different problems and solutions.
    Here are a couple FAQs:
    http://wiki.synchro.net/faq:tcpip#send_mail http://wiki.synchro.net/faq:tcpip#receive_mail

    The issue was actually both. :) The sending issue I was able to fix using
    the faq. For receiving, the faq makes it sound like I only need to do what
    it says if my isp blocks 25 inbound. As best as I can tell, they do not, but
    I have not yet been able to access a machine "outside" of my ISP to test it
    for sure.

    Thanks!


    ... Computer Hacker wanted. Must have own axe.
    --- MultiMail/IBMPcDos v0.43
    * Synchronet * CAPCITY2 * capcity2.synchro.net * 1-502-875-8938
    * Origin: Vertrauen - vert.synchro.net (1:103/705)
  • From Mike Powell@1:103/705 to Tony Langdon on Tue Apr 11 18:07:00 2017
    OK, a red herring (has nothing to do with outbound mail). :)


    both in and outbound were not working. inbound still is not, which is where the open ports come into play.




    ... DalekDOS v(overflow): (I)Obey (V)ision impaired (E)xterminate
    --- MultiMail/IBMPcDos v0.43
    * Synchronet * CAPCITY2 * capcity2.synchro.net * 1-502-875-8938
    * Origin: Vertrauen - vert.synchro.net (1:103/705)
  • From Mike Powell@1:103/705 to Bill McGarrity on Tue Apr 11 18:09:00 2017
    I had to use a reflector for that to happen. I have a sub-domain of mail.tequilamockingbirdonline.net and no-ip reflects port 25 to port
    465 so synch can get it and process it.


    Interesting, I had never heard of that before. It will be a few days before
    I get a chance to play with it again.


    ... Direct from the Ministry of Silly Walks
    --- MultiMail/IBMPcDos v0.43
    * Synchronet * CAPCITY2 * capcity2.synchro.net * 1-502-875-8938
    * Origin: Vertrauen - vert.synchro.net (1:103/705)
  • From Bill McGarrity@1:103/705 to Mike Powell on Tue Apr 11 23:31:00 2017
    Mike Powell wrote to Bill McGarrity on 04-11-17 18:09 <=-

    I had to use a reflector for that to happen. I have a sub-domain of mail.tequilamockingbirdonline.net and no-ip reflects port 25 to port
    465 so synch can get it and process it.


    Interesting, I had never heard of that before. It will be a few days before I get a chance to play with it again.


    If your provider has port 25 blocked... then you have no other choice, unless you want to make use of Rob's hospitality.


    --

    Bill

    Telnet: tequilamockingbirdonline.net
    Web: bbs.tequilamockingbirdonline.net
    FTP: ftp.tequilamockingbirdonline.net:2121
    IRC: irc.tequilamockingbirdonline.net Ports: 6661-6670 SSL: +6697
    Radio: radio.tequilamockingbirdonline.net:8010/live


    ... Look Twice... Save a Life!!! Motorcycles are Everywhere!!!
    --- MultiMail/Win32 v0.50
    * Synchronet * TequilaMockingbird Online - Toms River, NJ
    * Origin: Vertrauen - vert.synchro.net (1:103/705)
  • From Tony Langdon@3:633/410 to Mike Powell on Wed Apr 12 18:56:00 2017
    Mike Powell wrote to Tony Langdon <=-

    OK, a red herring (has nothing to do with outbound mail). :)


    both in and outbound were not working. inbound still is not, which is where the open ports come into play.

    My point was when we were talking about issues with sending mail, it was brought up, which confused the issue.


    ... Remember to finish what you
    --- MultiMail/Win32 v0.49
    * Origin: Freeway BBS - freeway.apana.org.au (3:633/410)
  • From Mike Powell@1:103/705 to Tony Langdon on Wed Apr 12 19:45:00 2017
    both in and outbound were not working. inbound still is not, which is where the open ports come into play.

    My point was when we were talking about issues with sending mail, it
    was brought up, which confused the issue.

    I know the difference but, when I posted that, I am pretty sure I was
    confused also. :)

    Thanks again!


    ... "42? 7 and a half million years and all you can come up with is 42?!"
    --- MultiMail/IBMPcDos v0.43
    * Synchronet * CAPCITY2 * capcity2.synchro.net * 1-502-875-8938
    * Origin: Vertrauen - vert.synchro.net (1:103/705)
  • From Tony Langdon@3:633/410 to Mike Powell on Thu Apr 13 12:00:00 2017
    Mike Powell wrote to Tony Langdon <=-

    I know the difference but, when I posted that, I am pretty sure I was confused also. :)

    Haha, fair enough. :)


    ... Got my tie caught in the fax... Suddenly I was in L.A.
    --- MultiMail/Win32 v0.49
    * Origin: Freeway BBS - freeway.apana.org.au (3:633/410)
  • From Digital Man@1:103/705 to Mike Powell on Thu Apr 13 11:49:04 2017
    Re: Re: Getting SMTP working
    By: Mike Powell to Digital Man on Tue Apr 11 2017 06:06 pm

    First, you have to clarify and focus on either *sending* SMTP mail or *receiving* SMTP mail as they have different problems and solutions. Here are a couple FAQs:
    http://wiki.synchro.net/faq:tcpip#send_mail http://wiki.synchro.net/faq:tcpip#receive_mail

    The issue was actually both. :) The sending issue I was able to fix using the faq. For receiving, the faq makes it sound like I only need to do what it says if my isp blocks 25 inbound. As best as I can tell, they do not, but
    I have not yet been able to access a machine "outside" of my ISP to test it for sure.

    This page will tell you want ports you have open: http://vert.synchro.net/scanmyports.ssjs

    digital man

    Synchronet "Real Fact" #8:
    Synchronet was originally intended as a replacement for WWIV BBS software. Norco, CA WX: 66.2oF, 54.0% humidity, 7 mph ESE wind, 0.00 inches rain/24hrs --- SBBSecho 3.00-Win32
    * Origin: Vertrauen - vert.synchro.net (1:103/705)
  • From Mike Powell@1:103/705 to Bill McGarrity on Sun Apr 16 09:18:38 2017
    I had to use a reflector for that to happen. I have a sub-domain of mail.tequilamockingbirdonline.net and no-ip reflects port 25 to port 465 so synch can get it and process it.


    Does no-ip support a linux update client?

    ---
    * Synchronet * CAPCITY2 * capcity2.synchro.net * 1-502-875-8938
    * Origin: Vertrauen - vert.synchro.net (1:103/705)
  • From Bill McGarrity@1:266/404 to Mike Powell on Sun Apr 16 14:59:00 2017
    Mike Powell wrote to Bill McGarrity on 04-16-17 09:18 <=-

    I had to use a reflector for that to happen. I have a sub-domain of mail.tequilamockingbirdonline.net and no-ip reflects port 25 to port 465 so synch can get it and process it.


    Does no-ip support a linux update client?

    https://www.noip.com/support/knowledgebase/installing-the-linux-dynamic-update-client/



    --

    Bill

    Telnet: tequilamockingbirdonline.net
    Web: bbs.tequilamockingbirdonline.net
    FTP: ftp.tequilamockingbirdonline.net:2121
    IRC: irc.tequilamockingbirdonline.net Ports: 6661-6670 SSL: +6697
    Radio: radio.tequilamockingbirdonline.net:8010/live


    ... Look Twice... Save a Life!!! Motorcycles are Everywhere!!!
    === MultiMail/Win32 v0.50
    --- SBBSecho 3.00-Win32
    * Origin: TequilaMockingbird Online - Toms River, NJ (1:266/404)
  • From Mike Powell@1:103/705 to Bill McGarrity on Sun Apr 16 18:01:00 2017
    Does no-ip support a linux update client?

    https://www.noip.com/support/knowledgebase/installing-the-linux-dynamic- update-client/

    Thanks. I spent some time hunting for that but could not find it. Glad one
    of us did. :)


    ... 2 + 2 = 5 for extremely large values of 2.
    --- MultiMail/IBMPcDos v0.43
    * Synchronet * CAPCITY2 * capcity2.synchro.net * 1-502-875-8938
    * Origin: Vertrauen - vert.synchro.net (1:103/705)
  • From Bill McGarrity@1:266/404 to Mike Powell on Sun Apr 16 22:05:00 2017
    Mike Powell wrote to Bill McGarrity on 04-16-17 18:01 <=-

    Does no-ip support a linux update client?

    https://www.noip.com/support/knowledgebase/installing-the-linux-dynamic- update-client/

    Thanks. I spent some time hunting for that but could not find it.
    Glad one of us did. :)


    Welcome...


    --

    Bill

    Telnet: tequilamockingbirdonline.net
    Web: bbs.tequilamockingbirdonline.net
    FTP: ftp.tequilamockingbirdonline.net:2121
    IRC: irc.tequilamockingbirdonline.net Ports: 6661-6670 SSL: +6697
    Radio: radio.tequilamockingbirdonline.net:8010/live


    ... Look Twice... Save a Life!!! Motorcycles are Everywhere!!!
    === MultiMail/Win32 v0.50
    --- SBBSecho 3.00-Win32
    * Origin: TequilaMockingbird Online - Toms River, NJ (1:266/404)
  • From Mike Powell@1:103/705 to Bill McGarrity on Sat Apr 22 15:02:22 2017
    Does no-ip support a linux update client?

    https://www.noip.com/support/knowledgebase/installing-the-linux-dynamic update-client/

    Thanks. I spent some time hunting for that but could not find it. Glad one of us did. :)

    Bill,
    You mentioned needing the reflector service... do you also have to subscribe to their alternate-port smtp service to get outgoing mail working with your domain?

    ---
    * Synchronet * CAPCITY2 * capcity2.synchro.net * 1-502-875-8938
    * Origin: Vertrauen - vert.synchro.net (1:103/705)
  • From Bill McGarrity@1:266/404 to Mike Powell on Sat Apr 22 18:02:00 2017
    Mike Powell wrote to Bill McGarrity on 04-22-17 15:02 <=-

    Does no-ip support a linux update client?

    https://www.noip.com/support/knowledgebase/installing-the-linux-dynamic update-client/

    Thanks. I spent some time hunting for that but could not find it. Glad one of us did. :)

    Bill,
    You mentioned needing the reflector service... do you also have to subscribe to their alternate-port smtp service to get outgoing mail working with your domain?

    No. I use my provider as a relay so I use their SSL ports to submit while supplying my username and password.


    --

    Bill

    Telnet: tequilamockingbirdonline.net
    Web: bbs.tequilamockingbirdonline.net
    FTP: ftp.tequilamockingbirdonline.net:2121
    IRC: irc.tequilamockingbirdonline.net Ports: 6661-6670 SSL: +6697
    Radio: radio.tequilamockingbirdonline.net:8010/live


    ... Look Twice... Save a Life!!! Motorcycles are Everywhere!!!
    === MultiMail/Win32 v0.50
    --- SBBSecho 3.00-Win32
    * Origin: TequilaMockingbird Online - Toms River, NJ (1:266/404)
  • From Mike Powell@1:103/705 to BILL MCGARRITY on Sun Apr 23 09:15:00 2017
    No. I use my provider as a relay so I use their SSL ports to submit while supplying my username and password.

    How do you get synchronet to use the right hostname for outgoing mail? In sbbs.ini, in the Mail section, I have set my new hostname up as:

    HostName=capitolcityonline.net

    However, the email I send out is not using that. The from fields contain
    the relay host hostname.

    ---
    * SLMR 2.1a * Overhead the albatross hangs motionless upon the air...
    * Synchronet * CAPCITY2 * capcity2.synchro.net * 1-502-875-8938
    * Origin: Vertrauen - vert.synchro.net (1:103/705)
  • From Bill McGarrity@1:266/404 to Mike Powell on Sun Apr 23 10:29:00 2017
    Mike Powell wrote to BILL MCGARRITY on 04-23-17 09:15 <=-

    No. I use my provider as a relay so I use their SSL ports to submit while supplying my username and password.

    How do you get synchronet to use the right hostname for outgoing mail?
    In sbbs.ini, in the Mail section, I have set my new hostname up as:

    I don't have that option in my sbbs.ini.

    HostName=capitolcityonline.net

    However, the email I send out is not using that. The from fields
    contain the relay host hostname.

    Run SCFG and under Networks > Internet E-Mail > System Address

    +[a][?]----------------------------------------------------+
    a Internet E-mail a a----------------------------------------------------------a
    a aSystem Address tequilamockingbirdonline.net a
    a aInbound E-mail Semaphore a
    a aOutbound E-mail Semaphore a
    a aAllow Sending of E-mail Yes a
    a aAllow File Attachments Yes a
    a aSend E-mail Using Alias No a
    a aCost to Send E-mail 0 a +----------------------------------------------------------+

    That should do it.... hopefully... :)




    --

    Bill

    Telnet: tequilamockingbirdonline.net
    Web: bbs.tequilamockingbirdonline.net
    FTP: ftp.tequilamockingbirdonline.net:2121
    IRC: irc.tequilamockingbirdonline.net Ports: 6661-6670 SSL: +6697
    Radio: radio.tequilamockingbirdonline.net:8010/live


    ... Look Twice... Save a Life!!! Motorcycles are Everywhere!!!
    === MultiMail/Win32 v0.50
    --- SBBSecho 3.00-Win32
    * Origin: TequilaMockingbird Online - Toms River, NJ (1:266/404)
  • From Mike Powell@1:103/705 to BILL MCGARRITY on Sun Apr 23 09:35:00 2017
    No. I use my provider as a relay so I use their SSL ports to submit while supplying my username and password.

    How do you get synchronet to use the right hostname for outgoing mail? In sbbs.ini, in the Mail section, I have set my new hostname up as:

    Nevermind. I was thinking that I bet there is one other setting in SCFG that
    I need to change, in addition to sbbs.ini. Sure nuff!

    Thanks!
    Mike

    ---
    * SLMR 2.1a * May The Force be with you...
    * Synchronet * CAPCITY2 * capcity2.synchro.net * 1-502-875-8938
    * Origin: Vertrauen - vert.synchro.net (1:103/705)
  • From Mike Powell@1:103/705 to BILL MCGARRITY on Sun Apr 23 18:28:00 2017
    That should do it.... hopefully... :)

    That did it. Now, if I can figure out how to turn off the DNS blacklist check I will be set. I checked the wiki... it talks about spamassassin but I don't think that is the problem. I don't have that installed on my system and I don't have the ini file section set up that would turn on synch's included version.

    In the meantime, it is causing the inbound SMTP connections to time-out
    because it takes too long checking the blacklist sites.

    ---
    * SLMR 2.1a * "!Beavis! ?Donde esta su hall pass?"
    * Synchronet * CAPCITY2 * capcity2.synchro.net * 1-502-875-8938
    * Origin: Vertrauen - vert.synchro.net (1:103/705)