How to configure phplist to use Gmail SMTP Server? - phplist

Anyone know how to configure phplist to use Gmail SMTP server?
Any advise? Thanks a lot for advice in advance

Based on this page https://github.com/PHPMailer/PHPMailer/blob/master/examples/gmail.phps
I added the following to my config.php.
define("PHPMAILERHOST",'smtp.gmail.com');
$phpmailer_smtpuser = 'usernae#gmail.com';
$phpmailer_smtppassword = 'password';
define('PHPMAILERPORT','587');
define("PHPMAILER_SECURE",'tls');
No other changes were needed.
I did get a warning from Google that an attempt was made to access to my account and it was blocked. I had to follow the steps to allow the connection.
https://support.google.com/accounts/answer/6010255

have look on it:
Phplist and Gmail SMTP

Related

sls alexa auth returns 400 Bad Request

I have recently started working on alexa serverless. I have followed the steps as mentioned in a serverless blog https://serverless.com/blog/how-to-manage-your-alexa-skills-with-serverless/
I have installed the serverless and created security profile and updated the Web settings with allowed return url i.e, https 127.0.0.1:9090
After this I ran the command sls alexa auth. From here I am getting error like this
I am unable to find whats happening behind the screens. whats with code. Required environment variables are set.Can somebody help me
Go to Amazon Developer Portal. Choose Login With Amazon > Security Profiles > Edit > Web Settings.
Make sure you have the Allowed URL field filled in with your IP.
I had a similar issue. I updated my Allowed Origin and Allowed Return URLS to the following and it worked. Here is a screenshot.
Link:
https://developer.amazon.com/settings/console/securityprofile/web-settings/update.html

How can I configure gmail in nagios core for sending email notification?

Configured nagios but cant get a valid information for configuring gmail,Used sstmp but not working can anyone please help
A quick google search found this:
http://www.unixmen.com/send-alerts-nagios-core-using-gmail-yahoo/

"Cross-origin-request blocked". How to overcome that?

When I am calling rest services using ionic and angularJS It's getting "Cross-origin-request blocked". How to overcome that?
Thank you.
Better to Add https://chrome.google.com/webstore/detail/allow-control-allow-origi/nlfbmbojpeacfghkpbjhddihlkkiljbi?hl=en to your chrome extension.
<cfheader name="Access-Control-Allow-Origin" value="*">
<cfheader name="Content-Type" value="text/javascript">
You will set above text on your server page that means which page you want access from remote. And one more thing i am using coldfusion server so above code looks in cf code format. So you will change syntax which server you have use.
A cross-origin request is a request from one domain to another. For security purposes you cannot get around that unless you control the server of the receiving domain. To solve your issue you must, therefore, make the request from and to the same domain. For more information, see: http://en.wikipedia.org/wiki/Cross-origin_resource_sharing
You can bypass them in certain web browsers.
https://www.thepolyglotdeveloper.com/2014/08/bypass-cors-errors-testing-apis-locally/
Chrome has been most successful for me.

Connection error with mule salesforce connector

trying to connect to salesforce sandbox with salesforce connector is resulting in following error,
Test connection failed: Check authEndpoint. It must contain '/services/Soap/u/'. authEndpoint specified
the url for connect is https://test.salesforce.com/services/Soap/c/29.0/.
the default connect url that appears on adaptor config is https://login.salesforce.com/services/Soap/u/28.0.
has anyone faced a similar error. if yes is there a workaround.
thanks
Santosh
Use https://test.salesforce.com/services/Soap/u/29.0
the /u/ means partner API
the /c/ means enterprise API
https://ap1.salesforce.com/services/Soap/u/32.0
https://your sfdc instance /services/Soap/u/32.0
will work

How to get important flag from Java Mail client

Is there a way to get whether a mail is marked as important or not from Java Mail API.? I'm using a Gmail account to connect. Thanks in advance.
Different mailers use different ways to indicate that a message is "important". Some use an X-Priority header. Others use an Importance header. I don't know offhand what Gmail uses, but look at the raw headers of a message and you should be able to figure it out. Then use the JavaMail getHeader method to access that header.

Resources