CiviCRM Community Forums (archive)

*

News:

Have a question about CiviCRM?
Get it answered quickly at the new
CiviCRM Stack Exchange Q+A site

This forum was archived on 25 November 2017. Learn more.
How to get involved.
What to do if you think you've found a bug.



  • CiviCRM Community Forums (archive) »
  • Old sections (read-only, deprecated) »
  • Support »
  • Using CiviCRM »
  • Using CiviMail (Moderator: Piotr Szotkowski) »
  • CiviCRM optOut generates email address like o.17.965.03ba638b7293702d
Pages: [1]

Author Topic: CiviCRM optOut generates email address like o.17.965.03ba638b7293702d  (Read 1552 times)

leechanin

  • I’m new here
  • *
  • Posts: 6
  • Karma: 0
CiviCRM optOut generates email address like o.17.965.03ba638b7293702d
April 05, 2010, 02:06:15 pm
CiviCRM optOut generates email address like o.17.965.03ba638b7293702d@mysite.com and I don't know what I am doing wrong.
I have IMAP email adress set up as info@mysite and I want users to be able to see something like
unsubscribe@mysite.com.
I tried adding unsubsribe+ to local part in Admin->Email Accounts of info@mysite.com, but that doesn't work.

Then, how do I setup return channel? I cannot find steps in documentation. My hosting vendor has catch_all functionality and I have set up
catch_all address but still, my users will see this o.17.965.03ba638b7293702d@mysite.com, right?

Joomla 1.5

Thanks,
Nikola

Piotr Szotkowski

  • Moderator
  • I live on this forum
  • *****
  • Posts: 1497
  • Karma: 57
Re: CiviCRM optOut generates email address like o.17.965.03ba638b7293702d
April 06, 2010, 07:36:06 am
Quote from: leechanin on April 05, 2010, 02:06:15 pm
CiviCRM optOut generates email address like o.17.965.03ba638b7293702d@mysite.com and I don't know what I am doing wrong.

You’re not doing anything wrong; this is how CiviMail knows who wants to opt-out from where.

Quote
I have IMAP email adress set up as info@mysite and I want users to be able to see something like
unsubscribe@mysite.com.

This won’t work, because the CiviMail Processor checks where the opt-out is addressed to to see what to do with an email.

Quote
I tried adding unsubsribe+ to local part in Admin->Email Accounts of info@mysite.com, but that doesn't work.

Hm. It should change the email address to something like unsubscribe+o.17.965.03ba638b7293702d@mysite.com – doesn’t it?

Quote
Then, how do I setup return channel? I cannot find steps in documentation. My hosting vendor has catch_all functionality and I have set up
catch_all address but still, my users will see this o.17.965.03ba638b7293702d@mysite.com, right?

In general, the best idea is to use the {action.optOutUrl} token (and other HTTP-based counterparts), which allows the user to un/re/subscribe, opt-out, etc. by clicking on a link.
If you found the above helpful, please consider helping us in return – you can even steer CiviCRM’s future and help us extend CiviCRM in ways useful to you.

leechanin

  • I’m new here
  • *
  • Posts: 6
  • Karma: 0
Re: CiviCRM optOut generates email address like o.17.965.03ba638b7293702d
April 07, 2010, 11:49:46 am
Hm. It should change the email address to something like unsubscribe+o.17.965.03ba638b7293702d@mysite.com – doesn’t it?

It does.

Well, I switched over to OptOutUrl and it works fine. Will stick to this method.

Thanks Pjotr

Piotr Szotkowski

  • Moderator
  • I live on this forum
  • *****
  • Posts: 1497
  • Karma: 57
Re: CiviCRM optOut generates email address like o.17.965.03ba638b7293702d
April 08, 2010, 05:57:13 am
Quote from: leechanin on April 07, 2010, 11:49:46 am
Hm. It should change the email address to something like unsubscribe+o.17.965.03ba638b7293702d@mysite.com – doesn’t it?

Yes, assuming you use unsubscribe+ as the localpart in the configuration (although it will prepend it to other VERP-ed addresses as well, which might be sub-optimal in your case).
If you found the above helpful, please consider helping us in return – you can even steer CiviCRM’s future and help us extend CiviCRM in ways useful to you.

jday

  • I post occasionally
  • **
  • Posts: 62
  • Karma: 6
  • CiviCRM version: 4.2
  • CMS version: 7.15
Re: CiviCRM optOut generates email address like o.17.965.03ba638b7293702d
May 13, 2010, 03:53:52 pm
using the {action.optOut} token creates this line: "To opt out, mailto:o.56.1334.f9d7fd9cbe9f7290@mysite.org"

and clicking that link brings up an email message form with "o.56.1334.f9d7fd9cbe9f7290@mysite.org", as the recipient.

Is the user not unsubscribed if they don't send this email message? and where will those messages end up?

Piotr Szotkowski

  • Moderator
  • I live on this forum
  • *****
  • Posts: 1497
  • Karma: 57
Re: CiviCRM optOut generates email address like o.17.965.03ba638b7293702d
May 20, 2010, 04:17:49 am
Quote from: jday on May 13, 2010, 03:53:52 pm
using the {action.optOut} token creates this line: "To opt out, mailto:o.56.1334.f9d7fd9cbe9f7290@mysite.org"

and clicking that link brings up an email message form with "o.56.1334.f9d7fd9cbe9f7290@mysite.org", as the recipient.

Great, this means that it works as expected.

Quote
Is the user not unsubscribed if they don't send this email message? and where will those messages end up?

The user will get unsubscribed only when you process this email with CiviMail Processor, which takes a look at a given mailbox and processes any related emails; obviously, you need to make sure an email to o.56.1334.f9d7fd9cbe9f7290@mysite.org does end up in that mailbox (for this you might use a ‘catch-all’ address or go the localpart route and make the email addresses look something more like civimail+o.56.1334.f9d7fd9cbe9f7290@mysite.org – this should make them end up in civimail@mysite.org).

Having said that, what I think you rather want is the {action.optOutUrl} token, which embeds a clickable URL instead. :)
If you found the above helpful, please consider helping us in return – you can even steer CiviCRM’s future and help us extend CiviCRM in ways useful to you.

Pages: [1]
  • CiviCRM Community Forums (archive) »
  • Old sections (read-only, deprecated) »
  • Support »
  • Using CiviCRM »
  • Using CiviMail (Moderator: Piotr Szotkowski) »
  • CiviCRM optOut generates email address like o.17.965.03ba638b7293702d

This forum was archived on 2017-11-26.