553 5.7.1 : Sender address rejected: not owned by user admin@mydomain.com
In a rails4 application, I am trying to send emails by configuring smtp settings but I am getting the following error:
553 5.7.1 : Sender address rejected: not owned by user
admin@mydomain.com
I am using the following settings:
config.action_mailer.delivery_method = :smtp
ActionMailer::Base.smtp_settings = {
:address => "smtp.mydomain.com",
:port => 25,
:domain => "mydomain.com",
:user_name => "admin@mydomain.com",
:password => "CorrectPassword",
:authentication => :plain,
:enable_starttls_auto => true,
:openssl_verify_mode => 'none'
}
config.action_mailer.default_url_options = {:host => "mydomain.com"}
The same works when I use my gmail account settings. I got my domain from bigrock.com and all MX Records are verified. I am able to send emails manually (by logging in webmail.mydomain.com). This issue has delayed the release of my site by quite a few days. Please Help!
ruby-on-rails-4 smtp
add a comment |
In a rails4 application, I am trying to send emails by configuring smtp settings but I am getting the following error:
553 5.7.1 : Sender address rejected: not owned by user
admin@mydomain.com
I am using the following settings:
config.action_mailer.delivery_method = :smtp
ActionMailer::Base.smtp_settings = {
:address => "smtp.mydomain.com",
:port => 25,
:domain => "mydomain.com",
:user_name => "admin@mydomain.com",
:password => "CorrectPassword",
:authentication => :plain,
:enable_starttls_auto => true,
:openssl_verify_mode => 'none'
}
config.action_mailer.default_url_options = {:host => "mydomain.com"}
The same works when I use my gmail account settings. I got my domain from bigrock.com and all MX Records are verified. I am able to send emails manually (by logging in webmail.mydomain.com). This issue has delayed the release of my site by quite a few days. Please Help!
ruby-on-rails-4 smtp
8
The mail server is rejecting your email because you're trying to send from a username which differs from the username you're logging in as, e.g. you've set the From: to beno-reply@mydomain.com
, which is obviously not the same asadmin@mydomain.com
– Marc B
Feb 16 '14 at 20:52
1
Oh! You are right. Thanks for the help Marc. Its now working, after I changed the "from" field's value to same as user_name.
– Siddhant
Feb 16 '14 at 21:09
add a comment |
In a rails4 application, I am trying to send emails by configuring smtp settings but I am getting the following error:
553 5.7.1 : Sender address rejected: not owned by user
admin@mydomain.com
I am using the following settings:
config.action_mailer.delivery_method = :smtp
ActionMailer::Base.smtp_settings = {
:address => "smtp.mydomain.com",
:port => 25,
:domain => "mydomain.com",
:user_name => "admin@mydomain.com",
:password => "CorrectPassword",
:authentication => :plain,
:enable_starttls_auto => true,
:openssl_verify_mode => 'none'
}
config.action_mailer.default_url_options = {:host => "mydomain.com"}
The same works when I use my gmail account settings. I got my domain from bigrock.com and all MX Records are verified. I am able to send emails manually (by logging in webmail.mydomain.com). This issue has delayed the release of my site by quite a few days. Please Help!
ruby-on-rails-4 smtp
In a rails4 application, I am trying to send emails by configuring smtp settings but I am getting the following error:
553 5.7.1 : Sender address rejected: not owned by user
admin@mydomain.com
I am using the following settings:
config.action_mailer.delivery_method = :smtp
ActionMailer::Base.smtp_settings = {
:address => "smtp.mydomain.com",
:port => 25,
:domain => "mydomain.com",
:user_name => "admin@mydomain.com",
:password => "CorrectPassword",
:authentication => :plain,
:enable_starttls_auto => true,
:openssl_verify_mode => 'none'
}
config.action_mailer.default_url_options = {:host => "mydomain.com"}
The same works when I use my gmail account settings. I got my domain from bigrock.com and all MX Records are verified. I am able to send emails manually (by logging in webmail.mydomain.com). This issue has delayed the release of my site by quite a few days. Please Help!
ruby-on-rails-4 smtp
ruby-on-rails-4 smtp
asked Feb 16 '14 at 20:45
SiddhantSiddhant
133127
133127
8
The mail server is rejecting your email because you're trying to send from a username which differs from the username you're logging in as, e.g. you've set the From: to beno-reply@mydomain.com
, which is obviously not the same asadmin@mydomain.com
– Marc B
Feb 16 '14 at 20:52
1
Oh! You are right. Thanks for the help Marc. Its now working, after I changed the "from" field's value to same as user_name.
– Siddhant
Feb 16 '14 at 21:09
add a comment |
8
The mail server is rejecting your email because you're trying to send from a username which differs from the username you're logging in as, e.g. you've set the From: to beno-reply@mydomain.com
, which is obviously not the same asadmin@mydomain.com
– Marc B
Feb 16 '14 at 20:52
1
Oh! You are right. Thanks for the help Marc. Its now working, after I changed the "from" field's value to same as user_name.
– Siddhant
Feb 16 '14 at 21:09
8
8
The mail server is rejecting your email because you're trying to send from a username which differs from the username you're logging in as, e.g. you've set the From: to be
no-reply@mydomain.com
, which is obviously not the same as admin@mydomain.com
– Marc B
Feb 16 '14 at 20:52
The mail server is rejecting your email because you're trying to send from a username which differs from the username you're logging in as, e.g. you've set the From: to be
no-reply@mydomain.com
, which is obviously not the same as admin@mydomain.com
– Marc B
Feb 16 '14 at 20:52
1
1
Oh! You are right. Thanks for the help Marc. Its now working, after I changed the "from" field's value to same as user_name.
– Siddhant
Feb 16 '14 at 21:09
Oh! You are right. Thanks for the help Marc. Its now working, after I changed the "from" field's value to same as user_name.
– Siddhant
Feb 16 '14 at 21:09
add a comment |
1 Answer
1
active
oldest
votes
As @marc-b commented,
The mail server is rejecting your email because you're trying to send from a username which differs from the username you're logging in as, e.g. you've set the From: to be no-reply@mydomain.com, which is obviously not the same as admin@mydomain.com
And the solution was:
.. You are right. ... I changed the "from" field's value to same as user_name.
Moderator's note: I have converted these comments to an answer so that this question can be used to close duplicate questions like stackoverflow.com/questions/54011483/…
– Jared Beck
Jan 3 at 0:18
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f21816348%2f553-5-7-1-mydomain-sender-address-rejected-not-owned-by-user-adminmydomain%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
As @marc-b commented,
The mail server is rejecting your email because you're trying to send from a username which differs from the username you're logging in as, e.g. you've set the From: to be no-reply@mydomain.com, which is obviously not the same as admin@mydomain.com
And the solution was:
.. You are right. ... I changed the "from" field's value to same as user_name.
Moderator's note: I have converted these comments to an answer so that this question can be used to close duplicate questions like stackoverflow.com/questions/54011483/…
– Jared Beck
Jan 3 at 0:18
add a comment |
As @marc-b commented,
The mail server is rejecting your email because you're trying to send from a username which differs from the username you're logging in as, e.g. you've set the From: to be no-reply@mydomain.com, which is obviously not the same as admin@mydomain.com
And the solution was:
.. You are right. ... I changed the "from" field's value to same as user_name.
Moderator's note: I have converted these comments to an answer so that this question can be used to close duplicate questions like stackoverflow.com/questions/54011483/…
– Jared Beck
Jan 3 at 0:18
add a comment |
As @marc-b commented,
The mail server is rejecting your email because you're trying to send from a username which differs from the username you're logging in as, e.g. you've set the From: to be no-reply@mydomain.com, which is obviously not the same as admin@mydomain.com
And the solution was:
.. You are right. ... I changed the "from" field's value to same as user_name.
As @marc-b commented,
The mail server is rejecting your email because you're trying to send from a username which differs from the username you're logging in as, e.g. you've set the From: to be no-reply@mydomain.com, which is obviously not the same as admin@mydomain.com
And the solution was:
.. You are right. ... I changed the "from" field's value to same as user_name.
answered Jan 3 at 0:17
Jared BeckJared Beck
10.5k35078
10.5k35078
Moderator's note: I have converted these comments to an answer so that this question can be used to close duplicate questions like stackoverflow.com/questions/54011483/…
– Jared Beck
Jan 3 at 0:18
add a comment |
Moderator's note: I have converted these comments to an answer so that this question can be used to close duplicate questions like stackoverflow.com/questions/54011483/…
– Jared Beck
Jan 3 at 0:18
Moderator's note: I have converted these comments to an answer so that this question can be used to close duplicate questions like stackoverflow.com/questions/54011483/…
– Jared Beck
Jan 3 at 0:18
Moderator's note: I have converted these comments to an answer so that this question can be used to close duplicate questions like stackoverflow.com/questions/54011483/…
– Jared Beck
Jan 3 at 0:18
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f21816348%2f553-5-7-1-mydomain-sender-address-rejected-not-owned-by-user-adminmydomain%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
8
The mail server is rejecting your email because you're trying to send from a username which differs from the username you're logging in as, e.g. you've set the From: to be
no-reply@mydomain.com
, which is obviously not the same asadmin@mydomain.com
– Marc B
Feb 16 '14 at 20:52
1
Oh! You are right. Thanks for the help Marc. Its now working, after I changed the "from" field's value to same as user_name.
– Siddhant
Feb 16 '14 at 21:09