We've been using Moodle 3.8 in which we want to send notifications to Users through Emails. For that we have configured Office365 Mailing Server as per Moodle Documentation. But while testing configuration through test mail feature, it returns with an error saying,
Your site couldn't communicate with your mail server. Please check your outgoing mail configuration.
Moodle Version - 3.8.3
SMTP Server - Office365
Note:- Website has sub-domain of a registered domain of Organization.
Any help would be appreciated.
Please add :587 in the SMTP hosts it works so it will be
SMTP hosts - smtp.gmail.com:587
SMTP security - TLS
Related
I have a domain, a Console Application with OWIN self-host.
The Console app host on AWS EC2 server windows server 2012.
My mail feature of server is sending Verification Mail
I've google many owin mail send or receive infomation,
but all of them are smtp/pop3 on google or some other smtp/pop3 server.
Is it possible to do send / receive mail in a console with current ip or custom domain?
I've try method.
Use hMailServer:
No luck in this. can't send/receive any mail, and set gmail for add smtp and pop3,
but fail.
the error msg: "We were unable to locate the other domain. Please contact your other provider."
Use AWS SES:
Still fail on this.
AWS SES need vail domain with anyaccount#domain, but i have no mail feature on my server.
Use my gmail:
Connect gmail need SSL. I have no SSL.
And research hours for host ssl on OWIN self-host,
Is there other solution for this?
I set a DNS MX Record from my DNS provider.
Now,I can send/receive mail with hamilserver and gmail smtp/pop3.
not best solution, but my problem solved.
I have configured Outbound email in Alfresco, by following this link:
http://docs.alfresco.com/4.1/concepts/email-outboundsmtp-props.html
My alfresco-global.properties contains:
### email server config smtp outbound
mail.host=emailserver.domain.com
mail.port=25
mail.username=example#domain.com
mail.password=password
mail.encoding=UTF-8
mail.from.default=example#domain.com
mail.smtp.auth=false
mail.protocol=smtp
mail.smtp.timeout=30000
I get the following error:
No authentication mechanisms supported by both server and client
The same configuration works with Alfresco hosted on a Windows server but doesn't work with Cent OS server.
Any idea what could be the cause ?
Make sure that your email id which you are using to send emails is less secure#
# Outbound Email Configuration
#-------------
mail.host=smtp.gmail.com
mail.port=465
mail.encoding=UTF-8
mail.username=****#gmail.com
mail.password=*******
mail.protocol=smtps
mail.from.default=****#gmail.com
mail.smtps.starttls.enable=true
mail.smtps.auth=true
I have installed Magento 1.7 on my mac. What should I do to send emails about orders from localhost. I'm developing store localy and just want to check how it works.
Use the tool give on this link Test mail tool
For sending the emails you need SMTP server which listens to port number 25.By default there is no SMTP server with wamp. So you need to use some SMTP tool to check email sending feature in local environment.
There is lots of posts with users having same error, but none of them works for me...
I am trying to send email reports in Hudson/Jenkins...
Our mail server uses SSL/TLS, I configured Jenkins for TLS, then I am getting this error:
Client does not have permissions to send as this sender
When I try javamail using code, it sends the email properly. Also, Thunderbird works fine.
Any ideas? Do I need to contact mail server administrators?
Finally got it, thanks to Friso
Had to set my email address in System Admin e-mail address under Jenkins Location.
The email should be changed in three places as below as per version 2.19.4:
Extended E-mail Notification - If using SMTP plugin
Email Notification - SMTP Authentication
Jenkins location - System Admin e-mail address
I had the same issue, and I discovered that credentials were no more valid, so I asked to the IT department who told me that credentials were no more need on LAN.
Now it works!
I'm using JasperReports Server 4.0.0 and I want how to configure mail server settings to mail the reports by report scheduling.
How I can do that? Does anyone know this?
You should edit the <app-server>/<deployment>/WEB-INF/js.quartz.properties configuration file.
The quote from the JasperReports Server Community Project Installation Guide (6.4.1 Mail Server Configuration Settings ).
report.scheduler.mail.sender.host - The name of the computer hosting the mail server
report.scheduler.mail.sender.username - The name of the user in the mail server that JasperReports Server can use
report.scheduler.mail.sender.password - The password of the mail server user
report.scheduler.mail.sender.from - The address that appears in the From field on email notifications
report.scheduler.mail.sender.protocol - The protocol that the mail server uses. JasperReports Server only supports SMTP. Note: Your entry must be lower case. For example: smtp
report.scheduler.mail.sender.port - The port number that the mail server uses. For SMTP, the default is typically 25 (values other than 25 may not work in
earlier JasperServer versions)
Yahoo settings are:
Yahoo! Mail SMTP server address: smtp.mail.yahoo.com
Yahoo! Mail SMTP user name: full email address (including "#yahoo.com")
Yahoo! Mail SMTP password: Your Yahoo! Mail password
Yahoo! Mail SMTP port: 25
So it would be:
# This file is now just a pass-through for stuff in the
# file referenced by the Maven js.quartz.properties file.
quartz.delegateClass=org.quartz.impl.jdbcjobstore.PostgreSQLDelegate
quartz.tablePrefix=QRTZ_
quartz.extraSettings=
report.scheduler.mail.sender.host=smtp.mail.yahoo.com
report.scheduler.mail.sender.username= Your full Yahoo! Mail email address (including "#yahoo.com")
report.scheduler.mail.sender.password= Your Yahoo! Mail password
report.scheduler.mail.sender.from=Your Full Yahoo Email
report.scheduler.mail.sender.protocol=smtp
report.scheduler.mail.sender.port=25