-
Posts
25,892 -
Joined
-
Last visited
-
Days Won
925
Everything posted by Krydos
-
Long version: These default mail accounts actually predate the internet itself. Even at the beginning of computing in the early 70s unix was designed to be a multi-user system, and before computers could even really communicate with each other users on these old systems could send messages to each other. Bob might send Steve a message "Hey, I installed pine!" and the next time Steve logged in the command line would tell him that he had mail. Eventually clever people began forming networks of computers and the internet rolled into existence. Mail from these early computers was adapted to not only be able to send mail locally, as it had originally been designed on the same physical machine, but send the mails out over the network to another computer. TLDR: The default mail address is part of linux not cpanel.
-
[Solved] Error 500 When I Try To Send A Mail
Krydos replied to tosites's topic in Escalated Requests
Awesome! I'm glad it's working for you now. -
[Solved] Error 500 When I Try To Send A Mail
Krydos replied to tosites's topic in Escalated Requests
What I'm suggesting is break your script into parts to test each function individually rather than just trying the whole thing at once. It's a common troubleshooting technique. For instance, if sending email from localhost works, then you could try sending email from gmail. Then if that works you can try having the script just display the data on the screen, and if that works maybe put the whole thing together to send the email, etc. Breaking it into smaller parts allows you to find which part isn't working rather than just seeing that the whole script doesn't work and you have no idea why. -
That domain is currently hosted on webs.com instead of us. If you want to host hotclublinks.com with us set your nameservers to ns1.heliohost.org and ns2.heliohost.org.
-
I renamed your forum account so you can create an account with the username robev. Let us know when your Tommy account is created and we can change your forum name back.
-
[Solved] Error 500 When I Try To Send A Mail
Krydos replied to tosites's topic in Escalated Requests
Have you tried using the local smtp server instead of gmail? Something like #!/usr/bin/python # Import modules for CGI handling import cgi, cgitb # set header for cgi print "Content-Type: text/html\n\n" # Import smtplib for the actual sending function import smtplib sender = 'admin@domain.heliohost.org' receiver = 'email@gmail.com' message = """From: Krydos <{f}> To: Krydos <{t}> Subject: SMTP e-mail test This is a test e-mail message. """.format(f=sender, t=receiver) try: smtpObj = smtplib.SMTP('localhost') smtpObj.sendmail(sender, receiver, message) print "Successfully sent email" except SMTPException: print "Error: unable to send email" -
See http://www.helionet.org/index/topic/26726-stevie-didnt-boot/ and http://www.helionet.org/index/topic/26860-stevie-progress/ etc.
-
Which website?
-
We've been having trouble with the Johnny server over the past couple weeks. We plan to fix him in February when we have an admin going to California to work on the servers. In the meantime we recommend creating an account on Tommy.
-
[Solved] Error 500 When I Try To Send A Mail
Krydos replied to tosites's topic in Escalated Requests
-
[Solved] Imagick Installation In The Server
Krydos replied to codename25's topic in Escalated Requests
Oh, I just assumed you wanted .png since your example was a .png. -
[Solved] Https Pages Are Not Supporting Any Of The Settings
Krydos replied to giteshss2's topic in Escalated Requests
Yes.- 8 replies
-
- java error
- asp.net error
-
(and 2 more)
Tagged with:
-
[Solved] Https Pages Are Not Supporting Any Of The Settings
Krydos replied to giteshss2's topic in Escalated Requests
Because you hadn't asked for Java or .NET to be installed over https yet.- 8 replies
-
- java error
- asp.net error
-
(and 2 more)
Tagged with:
-
[Solved] Imagick Installation In The Server
Krydos replied to codename25's topic in Escalated Requests
PHP Version: http://krydos.heliohost.org/54/phpinfo.php Input: http://krydos.heliohost.org/54/pdf-sample.pdf Code: <?php $myurl = "pdf-sample.pdf"; $image = new Imagick($myurl); $image->setResolution(300, 300); $image->setImageFormat("png"); $image->writeImage("pdf-sample.png"); Output:http://krydos.heliohost.org/54/pdf-sample.png I shrank the pdf a bit to make the image and it still looks pretty sharp to me. -
[Solved] Https Pages Are Not Supporting Any Of The Settings
Krydos replied to giteshss2's topic in Escalated Requests
There you go https://giteshsshroti.heliohost.org/test.jsp and https://giteshsshroti.heliohost.org/test.aspx- 8 replies
-
- 1
-
-
- java error
- asp.net error
-
(and 2 more)
Tagged with:
-
The one or two people who kept data in folders other than public_html lost information because I assumed (and for the sake of speed on the backup script) everyone would keep everything of importance in public_html. Actually, the only people I've seen keep websites anywhere other than public_html other than Nyten are phishers who are trying (and failing) to hide their scam sites...
-
Done. I really don't understand why it matters though, and why you keep making such a big deal about it.
-
The username amdc, and the domain amdc.heliohost.org are now available to create a new account.
-
If you want a dedicated ip you may buy one for $12 per year.
-
You have to create the subdomains individually. Creating a subdomain sub.example.com does not create sub.other.com unless you create sub.other.com separately. To create an email address on a subdomain go to https://tommy.heliohost.org:2083/frontend/paper_lantern/mail/pops.html and click the Domain dropdown. Select the domain you want to use and create the email address.
-
If you create an addon domain it will be separate from the rest of your domains. You can even create email addresses for them, and ftp accounts that can only access their addon domain.
-
[Solved] Error 500 When I Try To Send A Mail
Krydos replied to tosites's topic in Escalated Requests
Here is the error your script is encountering (censoring the email address): # ./send.py Traceback (most recent call last): File "./send.py", line 21, in <module> text = "From: me\n" + "To: Contact <email@gmail.com>\n" + "Subject: " + subject + "\nFrom: " + name + " <" + email + ">\n" + message + "\n" TypeError: cannot concatenate 'str' and 'NoneType' objects Which, upon closer inspection seems to be because those variable aren't being passed in from the form if it's run on the command line... Adding the lines name = "Krydos" email = "email@gmail.com" subject = "Test email" message = "Does this work?" makes it execute without an error though since those variables now have values. Did you get the email?
