Forwarding gitlab emails using gmail - email

I am trying to forward all emails from Gitlab using gmail. My rule looks like:
Matches: from:(gitlab#mg.gitlab.com)
Do this: Apply label "Gitlab", Forward to <forwarding-email>
The label is applied successfully, but the email is not forwarded.
I have verified forwarding is working with my forwarding email address by using another filter (matches from a friends email address).
I currently have forwarding disabled under Forwarding and POP/IMAP. When I do enable it, all emails are forwarded correctly except for the Gitlab emails.

Related

Email sent recieving in spam

I am using subdomain for sending email. for example test.example.com. I have configured DMARC,SPF,MX record, Reverse DNS. Checked with mxtoolbox.com and seems perfect.Also checked the IP for blacklist and non of them blacklisted My IP but when I send mail it recieves in Spam folder in my Gmail account. My server is hosted with Digital ocean ubuntu server. It will be helpful if some one give their suggestion

Emails not received in Opencart-3 from the same adress (from admin to admin email)

Please Help ...
I debug it and everything looks fine, I configured the SMTP in admin successfully and emails working fine but in case, If we add the same Hosting Domain name, while sending email then It's not working ???
Example: Forgot password not working because URL there but In admin "Marketing => Mail" working, If I do not add domain name. (NOTE: Other domain name working, If I add only opencart3 hosted domain name not working in email)
It looks like not an OpenCart issue, but a hosting configuration. As you said, when you are using same domain name in email, as a site domain - sometimes it's a routing incorrect.
Check an email configuration on your server. When you trying to sent an email to same-domain address - it could be routed as an inner massage. For example, in cPanel hosting settings you should inspect "Mail forwarding" and can check the status of messages in "Track delivery".
If you are using cPanel - go to Mail forwarding, find you domain, and change settins:
Automatically Detect Configuration. - will be set by default.
Local Mail Exchanger. - try this.
Backup Mail Exchanger.
Remote Mail Exchanger. - or this.
Or you can ask you hosting support. Your question will be "I'm trying to use an email address mayaddress#mydomain.com via SMTP on my mydomain.com, but when i try to sent an email to the same address - the message is missing. Can you check email routing settings?"

Can I use mix of GSuite and my own server to send emails?

I am hosting my email address, for example, arvind#mydomain.com on Gsuite.
How do I add more addresses in my server such as abc#mydomain.com and use my own server, such as my website to send emails to this user. I created abc#mydomain.com using WHM/cpanel for the domain. I am able to send email from this address but they end in spam folder. Also I am not able to send emails to this address.
I have added Google's server to MX entries and my own server such as mail.mydomain.com. However if I try to send email to abc#mydomain.com it fails with "Address not found".
How can I fix it? I am able to edit DNS entries if required to.

Create an email redirect with mailgun when namecheap is your domain provider

I am using mailgun as my mail provider for my domain. My domain is hosted through namecheap. I want to set up an email redirect like admin#mydomain.com to go to my personal email address. I can not do this through namecheap because I have a mail provider set up. Here is what I see in the main domain configuration page on namecheap:
I set up a matching route in mailgun however, this only works for the mailgun subdomain. So I can create a redirect for admin#mg.mydomain.com which works, but not admin#mydomain.com. No errors or bounces for admin#mydomain.com it just doesn't work.
Any ideas how to make this work? I have a ticket pending with mailgun, so I will report the solution here for others once its resolved.
I resolved this with the settings below. The Host Records were:
...and the MX records are:
Then in Mailgun > Receiving, I created a route that looks like this:

DotNetNuke is not sending out mails using SMTP Server

I have configured my DNN mail server to send out mail using our companies Email service provider. I cannot send any emails to external email server.
For ex. My email provider is testx#ttt.com. I can send emails to testy#ttt.com and textz#ttt.com. However i cannot send to testy#gmail.com or testy#hotmail.com
The error i see in the DNN event viewer is as below
System.Net.Mail.SmtpFailedRecipientsException: Unable to send to all recipients.
System.Net.Mail.SmtpFailedRecipientException: Mailbox unavailable.
The server response was: This domain is not hosted here
I have the same email address configured in my outlook and i can send/recieve to any emails like gmail or hotmail. Following are my DNN email settings
It sounds like one or two things might be happening here:
Your SMTP server isn't set up to allow relaying from the IP address of your web server.
You may need to create an SPF (Sender Policy Framework) or TXT record in DNS for your SMTP server's primary domain that allows SMTP traffic from the IP address of the server where your DNN website is hosted. An SPF record may already be in use for your email domain, but generally you'd add something like this to it: v=spf1 a ip4:1.2.3.4 -all, where 1.2.3.4 is the IP address of your web server.