Jump to content

Search the Community

Showing results for tags 'SMTP'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General Discussion
    • Website Management and Coding
    • Technology and the Internet
    • Philosophy, Politics, and Science
    • Art and Entertainment
    • Other Discussion
  • HelioHost
    • Questions
    • Customer Service
    • How You Can Help
  • HelioNet
    • News
    • Contact HelioNet

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

Found 18 results

  1. Hello, I've come to the conclusion that the non-SSL SMTP email port on Tommy doesn't actually work without SSL (aka TLS). The background is that some of my Email software is old and when Tommy was upgraded after the crash, the new encryption libraries were no longer compatible with my old software. I've been slowly working to get that software working with a newer OpenSSL library, and making do until then in various ways. I recently set up a new email account (using a unique password) for which security isn't very important, so I tried going unencrypted using the non-SSL port for SMTP (587 on Tommy). But it wouldn't work. Long story short, the email server software isn't providing any authentication methods to the client unless STARTTLS is used to enable encryption. Here I'm trying to connect without SSL: <-- 220-tommy.heliohost.org ESMTP Exim 4.92 #2 Sat, 25 Jul 2020 05:38:10 +0000 <-- 220-We do not authorize the use of this system to transport unsolicited, <-- 220 and/or bulk e-mail. --> EHLO heliohost.org <-- 250-tommy.heliohost.org Hello heliohost.org [1.136.169.170] <-- 250-SIZE 52428800 <-- 250-8BITMIME <-- 250-PIPELINING <-- 250-STARTTLS <-- 250 HELP --> QUIT <-- 221 tommy.heliohost.org closing connection msmtp: the server does not support authentication msmtp: could not send mail Here's what it looks like talking unencrypted to another server where it does work properly (some info redacted): <-- 220 [SERVERNAME] ESMTP Postfix (Ubuntu) --> EHLO localhost <-- 250-[SERVERNAME] <-- 250-PIPELINING <-- 250-SIZE 10240000 <-- 250-VRFY <-- 250-ETRN <-- 250-STARTTLS <-- 250-AUTH PLAIN LOGIN <---- We don't get this on Tommy! <-- 250-ENHANCEDSTATUSCODES <-- 250-8BITMIME <-- 250-DSN <-- 250 SMTPUTF8 --> AUTH PLAIN [ENCODED PASSWORD] <---- It tells us that we can do this <-- 235 2.7.0 Authentication successful --> MAIL FROM:<[MY EMAIL ADDRESS]> --> RCPT TO:<[RECEIVER'S EMAIL ADDRESS]> --> DATA <-- 250 2.1.0 Ok <-- 250 2.1.5 Ok <-- 354 End data with <CR><LF>.<CR><LF> --> Date: Sat, 25 Jul 2020 15:14:05 +1000 [MESSAGE] --> . <-- 250 2.0.0 Ok: queued as 7C7FE3B25F1 --> QUIT <-- 221 2.0.0 Bye Here I'm back with Tommy using another client where the SSL is new enough to work, and STARTTLS is enabled (this is still on the non-SSL port 587): * Connecting to SMTP server: mail.ombertech.com ... [17:02:20] SMTP< 220-tommy.heliohost.org ESMTP Exim 4.92 #2 Sat, 25 Jul 2020 06:56:29 +0000 [17:02:20] SMTP< 220-We do not authorize the use of this system to transport unsolicited, [17:02:20] SMTP< 220 and/or bulk e-mail. [17:02:20] ESMTP> EHLO The-Overheating-Giant [17:02:20] ESMTP< 250-tommy.heliohost.org Hello The-Overheating-Giant [1.136.166.92] [17:02:20] ESMTP< 250-SIZE 52428800 [17:02:20] ESMTP< 250-8BITMIME [17:02:20] ESMTP< 250-PIPELINING [17:02:20] ESMTP< 250-STARTTLS [17:02:20] ESMTP< 250 HELP [17:02:20] ESMTP> STARTTLS [17:02:21] ESMTP< 220 TLS go ahead * SSL certificate of mail.ombertech.com previously accepted [17:02:21] ESMTP> EHLO The-Overheating-Giant [17:02:21] ESMTP< 250-tommy.heliohost.org Hello The-Overheating-Giant [1.136.166.92] [17:02:21] ESMTP< 250-SIZE 52428800 [17:02:21] ESMTP< 250-8BITMIME [17:02:21] ESMTP< 250-PIPELINING [17:02:21] ESMTP< 250-AUTH PLAIN LOGIN <---- Now Tommy talks about AUTH, but only after STARTTLS has enabled TLS/SSL [17:02:22] ESMTP< 250 HELP [17:02:22] ESMTP> AUTH PLAIN ******** [17:02:22] ESMTP< 235 Authentication succeeded [17:02:22] SMTP> MAIL FROM:<[MY EMAIL ADDRESS]> [17:02:22] SMTP< 250 OK [17:02:22] SMTP> RCPT TO:<[RECEIVER'S EMAIL ADDRESS]> [17:02:22] SMTP< 250 Accepted [17:02:22] SMTP> DATA [17:02:23] SMTP< 354 Enter message, ending with "." on a line by itself [17:02:23] SMTP> . (EOM) [17:02:23] SMTP< 250 OK id=1jzE6i-000PnH-MD [17:02:23] SMTP> QUIT [17:02:24] SMTP< 221 tommy.heliohost.org closing connection In that same client if I disable STARTTLS it fails like on the other system. Here though I can force it to attempt the AUTH command even though no AUTH methods are provided by the server, but the server won't accept that: * Connecting to SMTP server: mail.ombertech.com ... [16:31:38] SMTP< 220-tommy.heliohost.org ESMTP Exim 4.92 #2 Sat, 25 Jul 2020 06:25:47 +0000 [16:31:38] SMTP< 220-We do not authorize the use of this system to transport unsolicited, [16:31:38] SMTP< 220 and/or bulk e-mail. [16:31:38] ESMTP> EHLO The-Overheating-Giant [16:31:38] ESMTP< 250-tommy.heliohost.org Hello The-Overheating-Giant [1.136.169.176] [16:31:38] ESMTP< 250-SIZE 52428800 [16:31:38] ESMTP< 250-8BITMIME [16:31:38] ESMTP< 250-PIPELINING [16:31:38] ESMTP< 250-STARTTLS [16:31:38] ESMTP< 250 HELP [16:31:38] ESMTP> AUTH PLAIN ******** [16:31:38] ESMTP< 503 AUTH command used when not advertised <---- Tommy knows when I'm trying to cheat ** LibSylph-WARNING: [16:31:38] error occurred on SMTP session ** error occurred on SMTP session ** Sylpheed-WARNING: send: error: 503 AUTH command used when not advertised ** LibSylph-WARNING: [16:31:38] Error occurred while sending the message. ** Error occurred while sending the message. The intended SSL Port 465 works fine, if the client's encryption library is new enough. Perhaps port 587 is actually supposed to only work with STARTTLS and therefore SSL, even though the CPanel info suggests differently. So if it's intentional I'll go away with my tail between my legs and try to wrestle my old systems into the modern encrypted world (which I'm working on anyway). If it's a mistake in Exim's configuration though, I'd be glad to see it fixed. PS. No my current ISP doesn't have an authentication-free SMTP server available to customers, which I could use for sending by using my Heliohost-hosted email address in the "From:" header.
  2. Hi guys, i have some problem with SMTP setting on johnny server. I am hosting my domain devansab.com at infinityfree.net and i have set my MX record to johnny.heliohost.org. I am facing some problem with this, when i setup my email in Gmail app then all works fine, but if i use any other mobile app (Blue mail) or use it on my wordpress with same settings then it did not connect to server. I am using these settings Email : my email created in heliohost account Passowrd: correct password IMAP:: Server: johnny.heliohost.org Port 993 Security SSL/TSL Thankyou.
  3. I've registered a domain, foti.eu and, because I've not installed a mail server yet, I would like for emails to that domains to be received and handled by the heliohost mail server. I've created a subdomain (and a test email account) and the DNS for my domain is thus configured: foti.eu A 2.238.78.104 www.foti.eu A 2.238.78.104 foti.eu MX 20 fotieu-backup.wolfcube.heliohost.orgHowever, when I try to send an email to test@foti.eu I get the following message from my email provider <test@foti.eu>: host fotieu-backup.wolfcube.heliohost.org[65.19.143.6] said: 550-The mail server could not deliver mail to test@foti.eu. The account or 550-domain may not exist, they may be blacklisted, or missing the proper dns 550 entries. (in reply to RCPT TO command) It looks like the mail server is trying to forward the email to my website (which of course will not work since there is no server installed), but I would like it to handle it. How can I do this? Please note that transferring the DNS settings to point my domain to heliohost is not an option as I need it where it is now, I would like just the emails to get to heliohost.
  4. Hello! I am using django on Tommy. In one of my django apps I would like to connect to my google mail trough "smtp.gmail.com",587 and send some emails. When I try to do this the following error arise: Exception Type: OSError Exception Value: [Errno 101] Network is unreachable I think that is a firewall issue. Is possible to solve this problem? the script that I wrote is the following: #! /usr/bin/python # -*- coding: utf-8 -*- from __future__ import unicode_literals import smtplib from email.mime.multipart import MIMEMultipart from email.mime.text import MIMEText from .models import Story from django.utils import timezone def send_mail(html, destination): gmail_pwd = '********' # me == my email address # you == recipient's email address me = "colouredsweat@gmail.com" smtpserver = smtplib.SMTP("smtp.gmail.com",587) smtpserver.ehlo() smtpserver.starttls() smtpserver.ehlo smtpserver.login(me, gmail_pwd) header = 'To:' + destination.email + '\n' + 'From: ' + me + '\n' + 'Subject:Coloured Sweat \n' #print header # Create message container - the correct MIME type is multipart/alternative. msg = MIMEMultipart('alternative') msg['Subject'] = "Coloured Sweat" msg['From'] = me msg['To'] = destination.email # Create the body of the message (a plain-text and an HTML version). text = 'hey' # Record the MIME types of both parts - text/plain and text/html. part1 = MIMEText(text, 'plain') part2 = MIMEText(html, 'html') # Attach parts into message container. # According to RFC 2046, the last part of a multipart message, in this case # the HTML message, is best and preferred. msg.attach(part1) msg.attach(part2) smtpserver.sendmail(me, destination.email, msg.as_string()) #print 'done!' smtpserver.close()
  5. Hi Heliohost, My username is Zekus. I am using Tommy server. I cannot send mail from Outlook/Gmail/Mailgun SMTP, which is working with my local WAMP. This is the error I received. But when I commented "$mail->isSMTP();" from my php file, it is working but an email will be sent to Junk mail.I did try both port 465 for SSL and 587 for TLS.Here is my PhpMailer code. <?php namespace PHPMailer; use PHPMailer\PHPMailer\PHPMailer; use PHPMailer\PHPMailer\SMTP; use PHPMailer\PHPMailer\Exception; require_once 'PHPMailer.php'; require_once 'SMTP.php'; require_once 'Exception.php'; $mail = new PHPMailer; $mail->IsSMTP(); $mail->SMTPDebug = 0; $mail->Host = 'smtp-mail.outlook.com'; $mail->Port = 587; $mail->SMTPSecure = 'tls'; $mail->SMTPAuth = True; $mail->CharSet = 'UTF-8'; $mail->SMTPKeepAlive = true; $mail->Username = "admin@job4dent.com"; $mail->Password = "*****"; $mail->setFrom('admin@job4dent.com', 'Job4Dent'); $mail->addAddress('job4dent@outlook.com', 'John Doe'); $mail->Subject = 'PHPMailer 6.0 Outlook SMTP test'; $mail->Body = "Hi,<br> This system is working perfectly."; $mail->IsHTML(true); $mail->AltBody = 'This is a plain-text message body'; if (!$mail->send()) { echo "Mailer Error: " . $mail->ErrorInfo; } else { echo "Message sent!"; } When I change Host to tommy.heliohost.org or change my username and password, my email can be sent but with warning of fraud email that was not directly sent by Google/Outlook. It can be tested via https://4dent.tk/cronSendMailClinicGMail.php Many thanks, Zekus
  6. I am creating a mailing system in java web application, using google SMTP . but it shows this: HTTP Status 500 - javax.mail.MessagingException: Could not connect to SMTP host: smtp.gmail.com, port: 587; type Exception report message javax.mail.MessagingException: Could not connect to SMTP host: smtp.gmail.com, port: 587; description The server encountered an internal error that prevented it from fulfilling this request. exception java.lang.RuntimeException: javax.mail.MessagingException: Could not connect to SMTP host: smtp.gmail.com, port: 587; nested exception is: java.net.ConnectException: Connection refused (Connection refused) com.SendVerification.SendMail(SendVerification.java:50) com.Register.doPost(Register.java:72) javax.servlet.http.HttpServlet.service(HttpServlet.java:648) javax.servlet.http.HttpServlet.service(HttpServlet.java:729) org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52) root cause javax.mail.MessagingException: Could not connect to SMTP host: smtp.gmail.com, port: 587; nested exception is: java.net.ConnectException: Connection refused (Connection refused) com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1961) com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:654) javax.mail.Service.connect(Service.java:317) javax.mail.Service.connect(Service.java:176) javax.mail.Service.connect(Service.java:125) javax.mail.Transport.send0(Transport.java:253) javax.mail.Transport.send(Transport.java:124) com.SendVerification.SendMail(SendVerification.java:45) com.Register.doPost(Register.java:72) javax.servlet.http.HttpServlet.service(HttpServlet.java:648) javax.servlet.http.HttpServlet.service(HttpServlet.java:729) org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52) root cause java.net.ConnectException: Connection refused (Connection refused) java.net.PlainSocketImpl.socketConnect(Native Method) java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350) java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206) java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188) java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392) java.net.Socket.connect(Socket.java:589) java.net.Socket.connect(Socket.java:538) com.sun.mail.util.SocketFetcher.createSocket(SocketFetcher.java:299) com.sun.mail.util.SocketFetcher.getSocket(SocketFetcher.java:234) com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1927) com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:654) javax.mail.Service.connect(Service.java:317) javax.mail.Service.connect(Service.java:176) javax.mail.Service.connect(Service.java:125) javax.mail.Transport.send0(Transport.java:253) javax.mail.Transport.send(Transport.java:124) com.SendVerification.SendMail(SendVerification.java:45) com.Register.doPost(Register.java:72) javax.servlet.http.HttpServlet.service(HttpServlet.java:648) javax.servlet.http.HttpServlet.service(HttpServlet.java:729) org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52) note The full stack trace of the root cause is available in the Apache Tomcat/8.5.4 logs. please help.....
  7. There were an error: Could not connect to SMTP host: mail.divyansj.gq, port: 465, response: -1 This is the error shown when my java servlet tries to connect to my mail host. I tried port 25 but still the same. Do i have to request specially for connecting via external servlet or any services? or it isn't supported?
  8. 1) There was restriction of 50 outgoing mails per day before - is this changed somehow today(on Tommy)? Does autoresponder considering as outgoing mail? Are there any restrictions about incoming mail quota too? 2) I've setup my HelioHost mail account so it will forward mails to my Gmail account, but the copies are saved on HelioHost end - is there anyway to disable that option, or perhaps remove them automatically somehow? 3) (not really HelioHost related question) I'm trying to find a way and hide the original HelioHost IP when sending an email. When I send email from my Gmail account(not as username@gmail.com, but as username@mydomain.com), instead of Gmail's, there's HelioHost IP and info inside the sent mail headers. Is there anyway to hide it(not really to hide as none, but to show Gmail's for example or some other)?
  9. Hi Admin, Last few days I had an working php script which allowed me to send email using PHP PEAR by connecting to an external SMTP server (smtp.yandex.com). However, since last 2 days probably I can see that the php script is unable to connect to the smtp server and thus not being able to send emails. I have tested with following script to find out that somehow, heliohost is probably blocking the access to the smtp server / port. Since, I found this script being able to connect from a different php host. Can you please check and let me know what went wrong recently that I'm unable to connect to smtp server in question. Test Script: <?php $timeout = 30; // your own timeout value $connection_type = 'ssl'; // may be ssl, sslv2, sslv3 or tls $host = 'smtp.yandex.com'; $port = 465; $fp = stream_socket_client("{$connection_type}://{$host}:{$port}", $errno, $errstr, $timeout); if (!$fp) { echo "$errstr ($errno)"; } else { echo "Connection established"; } ?> Looking forward for your help!
  10. Just sent an email from one of my domain accounts to a Yahoo address and the message was returned to sender ("Mail delivery failed: returning message to sender") with the following explanation: "Connections will not be accepted from 65.19.143.2, because the ip is in Spamhaus's list." I went to Spamhaus and entered the IP address (which belongs to the Stevie server). Here's the result: I assume you will take care of this and there's nothing for me to do?
  11. I've seen part of this issue come up a few times, with workaround resolutions that really aren't ideal, but I've not seen this related continuation of the problem. The recommended ports for IMAP: 993; and for SMTP: 465. The (not recommended) settings are for IMAP: 143; and for SMTP: 25. But neither of these work in Thunderbird. The only config that works is IMAP: 143 (not recommended) and for SMTP: 587 (not listed for either config setting). And as was mentioned in another users post, Thunderbird gave a warning message about the security settings being potentially unsafe one time, and gave the option to override it (which I did, but I'd rather not have to do that). However, AVG is unable to scan the emails for viruses because they are encripted with unorthodox settings, so I have to manually input the server/port settings in AVG. The problem is, none of the 3 port options work, which means AVG pops up 4 times (1 for each address) every 5 minutes to let me know, interrupting anything I may be doing from reading an article, coding, or watching a video. What I don't want to do is compromise on email security, and that's what I'm being forced to do... which makes this a HH problem, and not an AVG problem. What I need is not a workaround to prevent AVG from telling me there is a problem, but a solution that allows me to use the correct (and secure) port settings that AVG will recognize and that Thunderbird will use without security overrides.
  12. Hi, some time after May 12, all outgoing SMTP mail from my web app seems to have stopped working. I am on stevie. Here is some test php code (uses PHPMailer): $mail = new PHPMailer(); $mail->IsSMTP(); $mail->SMTPAuth = true; $mail->Debugoutput = 'html'; $mail->SMTPDebug = 3; //$mail->SMTPSecure = 'tls'; //$mail->Port = 587; $mail->SMTPSecure = 'ssl'; $mail->Port = 465; $mail->Host = 'smtp.gmail.com'; // '74.125.129.108'; $mail->Username = '**********@gmail.com'; $mail->Password = '**********'; $mail->Subject = 'TEST subject'; $mail->Body = 'TEST body'; $mail->AddAddress("**********@yahoo.com", "name"); $mail->AddReplyTo("**********@yahoo.com", "name"); $mail->Send(); Output: Connection: opening Connection: opened SERVER -> CLIENT: 220-stevie.heliohost.org ESMTP Exim 4.80 #2 Thu, 05 Jun 2014 14:40:59 -0700 220-We do not authorize the use of this system to transport unsolicited, 220 and/or bulk e-mail. CLIENT -> SERVER: EHLO www.draftlotto.com SERVER -> CLIENT: 250-stevie.heliohost.org Hello stevie.heliohost.org [65.19.143.2]250-SIZE 52428800250-8BITMIME250-PIPELINING250-AUTH PLAIN LOGIN250 HELP CLIENT -> SERVER: AUTH LOGIN SERVER -> CLIENT: 334 VXNlcm5hbWU6 CLIENT -> SERVER: ZHJhZnRsb3R0b0BnbWFpbC5jb20= SERVER -> CLIENT: 334 UGFzc3dvcmQ6 CLIENT -> SERVER: YTtyb21uMTJa SERVER -> CLIENT: 535 Incorrect authentication data SMTP ERROR: Password command failed: 535 Incorrect authentication data CLIENT -> SERVER: QUIT SERVER -> CLIENT: 221 stevie.heliohost.org closing connection Connection: closed SMTP connect() failed. Note I have also tried using a completely different SMTP server, and get authentication errors there too, with or without SSL. Yes I have triple-checked my username and password for BOTH SMTP servers, and once again, everything was working fine prior to May 12. Any help would be greatly appreciated!
  13. Most free web hosts have limited sending of emails.. Some of them have limited sending to 1 email per hour. Now, what is the SMTP (Send mails) limitation of HelioHost? Does it have limit? Or it is unlimited or what?
  14. Hello, I'm trying to get all email for my domains to forward to a specific address, per domain, which then goes to a few addresses at yahoo.com and gmail.com. USER: heycm (on Johnny) Domains: HEYCOMPUTERMAN.BIZ => mail@heycomputerman.biz -> oatman@geocities.com TUCSONCOMPUTER.INFO => mail@tucsoncomputer.info -> oatman@geocities.com ILLEGALKNOWLEDGE.COM => mail@illegalknowledge.com -> illegalknowledge@gmail.com MICHAELOATMAN.NET => mail@michaeloatman.net -> oatman@geocities.com MICHAELOATMAN.INFO => mail@michaeloatman.info -> oatman@geocities.com DISLOYALCONSUMER.COM => mail@disloyalconsumer.com -> sunsetsea@yahoo.com The intended effect would be that if I send email to either television@illegalknowledge.com or to mail@illegalknowledge.com, the message would be routed through mail@illegalknowledge.com and then forwarded to illegalknowledge@gmail.com, for example. As another example, consulting@tucsoncomputer.info would go through mail@tucsoncomputer.info and would forward to oatman@geocities.com, etc, etc, for all the domains above. The most important thing is that if on the fly, I make up an email address, like IKTV602@IllegalKnowledge.com, I need it to get to me. This used to be working prior to (literally) The Ides Of March. Something happened where from the 16th onward, mail stopped arriving, presumably with a Failure Notice. After reading all of the forums instructions and problematic situations, and re-configuring, now the trouble is that when I try to even send mail to, say mail@illegalknowledge.com, I get a Failure Notice: __________________________________________________________________________ From: MAILER-DAEMON@yahoo.com To: illegalknowledge@yahoo.com Subject: Failure Notice Sorry, we were unable to deliver your message to the following address. <mail@illegalknowledge.com>: Remote host said: 550 Sender verify failed [RCPT_TO] --- Below this line is a copy of the message. Received: from [98.138.101.128] by nm6.bullet.mail.ne1.yahoo.com with NNFMP; 15 Aug 2013 19:12:11 -0000 Received: from [98.138.101.161] by tm16.bullet.mail.ne1.yahoo.com with NNFMP; 15 Aug 2013 19:12:11 -0000 Received: from [127.0.0.1] by omp1072.mail.ne1.yahoo.com with NNFMP; 15 Aug 2013 19:12:11 -0000 X-Yahoo-Newman-Property: ymail-3 X-Yahoo-Newman-Id: 257723.44442.bm@omp1072.mail.ne1.yahoo.com Received: (qmail 37087 invoked by uid 60001); 15 Aug 2013 19:12:11 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1376593931; bh=RcOi6eEv3MV6L1r32mqRzg+bLhBO6rgiaoz/OoTD8ZA=; h=X-YMail-OSG:Received:X-Rocket-MIMEInfo:X-Mailer:Message-ID:Date:From:Reply-To:Subject:To:MIME-Version:Content-Type; b=BvTUyprj1kkQ2bvAqKFuzszGIuAJixAuFt6my9I7gDOUiwRqjER38i3X4m2aHn8cn1JL/uDLrSsl9eRwqJ9OBZOJdqL1u/i258WVDxODUID9idlKjtC88HJBgpYy7zg6sDlrYrX1qscUCTvhTWA03tWuCRwkPbo7q+FVcxhEjbU= DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=X-YMail-OSG:Received:X-Rocket-MIMEInfo:X-Mailer:Message-ID:Date:From:Reply-To:Subject:To:MIME-Version:Content-Type; b=D0hCSUwyZfB9U708EthLwGQG/2Wro4jsST1WTkA+MpMrNwdvks1rsVd1TEom+naG3nlPPvUsh3Ymo+/69Mg1YxcT8LcV+3T22l0voCIz4ow4r97Oh62VyPA9uLIO/NbNdNkTN2RxkfwvKty/KF5oXy+pcoFnXNNdT3yTxrD1GKU=; X-YMail-OSG: rL2nkYoVM1nq3v4DW2ZJdvZ01CMlDh4THFJmLTd0MukMDGH 6XSQpLW5ty2np.Dmyw2ThJGV8wcPprhBp7ExAw8jEnsfCKqFN0Jp22qPcFiy ZsDoPjBQqYjpMlfg.NVcXGlT0wGernKhi0eADWHAcYzGAICJNSN60hL2rsJq r2bMVKHPJR1N9wQ8rPCDH5enKmy4vu54vs0rUzEIFmfwTFgh9bDNA.gG0qQH 1iqPd2f4SlCZdl27GSzkb8CO0xti.nWm3ZQeNBzI2y.4tMnzPt1bpva4Uc6S VgI2Xgq0JGPvx8mGK1xfu56eQpxxVcvnD8KLjKpPvmqH9jgDcm5LrKizHvmj X3mA_6.tb_0mwOa8HIE3jZDv4SoO8KsihuxDohELKbXVzs4tJzor6CXG9ViL 1weggR0CoO6mCaPfuypsWN7OjXej.vdkqpQPKuomipgLF8zzF1FlRcZXmE1Y YUMgx3V9b1UHvyBivsOM67IZPJYeUEdYydk0hDpkbkFOZ8A9hZDCgSGSg2yG O2VWT3e6OmM7H9GBO4wGA3nzVj1jzHF5yWi.tzqy3wYm1lFD_ZNxAz7s_Vry .3GNAw7qkfOLaRQZ0YLpDKVtjt8FOgw7xlH9O9JpugjAxm0GrEqwSXB5C8XI ruxFWQqzmW8lhJGj0VsJBjjc075KmXCzPMo_0oi8_rMBjyrovcK.jB0Cgz_3 ROqs_8yy7B10bG4FfWVKRsU9KWo4NTldgWtkNXoWcHL2bvL1eQttMBvxS7CO 6nG9yvOShxijjQg-- Received: from [65.129.236.104] by web124703.mail.ne1.yahoo.com via HTTP; Thu, 15 Aug 2013 12:12:11 PDT X-Rocket-MIMEInfo: 002.001,dGVzdCBwb3N0IEhIIHVwZGF0ZXMgMQrCoApfX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fXwoKCklsbGVnYWwgS25vd2xlZGdlIFRWIC0gY2FsbCA1MjAuNjI0LjI3OTIgd2l0aCB5b3VyIGNvbW1lbnRzIQpUd2l0dGVyIHlvdXIgY29tbWVudHMvcXVlc3Rpb25zIHRvIEBJS1RWdHdlZXQgYmVmb3JlIG9yIGR1cmluZyBzaG93cyEKWW91IGNhbiBhbHNvIHVzZSBGYWNlYm9vazogaHR0cDovL2ZhY2Vib29rLmNvbS9JbGxlZ2FsS25vd2xlZGdlCkxpdmUgZXZlcnkgdGhpcmQBMAEBAQE- X-Mailer: YahooMailWebService/0.8.154.571 Message-ID: <1376593931.35884.YahooMailNeo@web124703.mail.ne1.yahoo.com> Date: Thu, 15 Aug 2013 12:12:11 -0700 (PDT) From: "Illegal Knowledge.com" <illegalknowledge@yahoo.com> Reply-To: "Illegal Knowledge.com" <IllegalKnowledge@yahoo.com> Subject: test again 1 To: "mail@illegalknowledge.com" <mail@illegalknowledge.com> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="653734908-146887865-1376593931=:35884" --653734908-146887865-1376593931=:35884 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable [message] __________________________________________________________________________ Okay, so I have the mail@domains.tld set up and configured for mail forwarding to the proper addresses. I have the default addresses per each domain listed as the mail@domain.tld for that domain. Interestingly enough, it used to work when I did not have mail@domains.tld configured to forward from each domain. Rather, I had the catch-all addresses listed per domain in the Default Addresses set to the final destination addresses (3rd column above). As I stated, that worked until the Ides of March of this year. Any ideas? BTW, it does not work in the configuration which was working prior to 3/15/13. Thanks In Advance! Michael
  15. Having trouble with sending emails. Using Mail on MacOS Lion, connection doctor says smtp is connecting, however can't send any emails. Also, someone trying to email me is saying it's bouncing back, and another person is saying they've emailed me, but nothing is coming through. What's going on? Username: donnnie Server: stevie email adress: info@detaildesign.me
  16. I can't receive or send mail...i'm geting this message [sMTP: Invalid response code received from server (code: 421, response: Unexpected failure, please try later)] I try on horde, rounde and squirrel, nothing...same message It just stop the send/receive around 14:00 GMT Plz help Domain: virtual.eng.br Usar: virtual Server: stevie
  17. I am not able to send emails through the outgoing mail server. I am using SMTP on Stevie All settings are correct - user name, password, server setting is mail.mydomain.com, port 25, SMTP requires authentification It has been over 2 days since the site was set up POP3 incoming server works fine
  18. Hi! I am trying to send an email using a newly created email account, but there is an error. Here is the said error: [sMTP: Invalid response code received from server (code: 550, response: Authentication failed)] Anyone knows how to resolve this problem? Thanks!
×
×
  • Create New...