Re: [BitBucket Branch Source Plugin] Massive PR rebuild

2018-05-16 Thread Dan Tran

I added 'build strategies'

* *Change requests*

Ignore rebuilding merge branches when only the target branch 
changed = check

* *Named branches*
*Wildcard include/excludes: master*

Without the second one, no build trigger at direct commit to master and PR 
merge into master

Sofar it seems to work.  

Thanks

-D 

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/a12760d8-7650-440a-865b-b957fb23c09b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Getting Jgit exception in a Job that uses native Git

2018-05-16 Thread Brian Ray
No problem on top posting. It seems to be the default behavior of the 
Groups UI here, so I am guilty of it too.

I misunderstood or otherwise skipped right over the "native" modifier in 
your original post. I wonder if there is some path through the plugin code 
that utilizes parts of JGit even when the job specifies checkout via the 
regular Git client. Very strange.

On Monday, May 14, 2018 at 12:18:00 AM UTC-7, Dirk Heinrichs wrote:
>
> Hi,
>
>  
>
> how could I have selected a native Git installation in the job config if 
> it wasn't in the global config?
>
>  
>
> Bye...
>
>  
>
> Dirk
>
>  
>
> PS: Sorry for top posting, I'm currently forced to use Outlook.
>
>  
>
>  
>
> *From:* jenkins...@googlegroups.com  [mailto:
> jenkins...@googlegroups.com ] *On Behalf Of *Brian Ray
> *Sent:* Freitag, 11. Mai 2018 02:21
> *To:* Jenkins Users 
> *Subject:* Re: Getting Jgit exception in a Job that uses native Git
>
>  
>
> Navigate to *Manage Jenkins* > *Global Tool Configuration* > *Git* > *Git 
> Installations*.
>
> If the only installation configured there is *JGit *or *JGit with Apache 
> HTTP client*, that is the answer. The *Git *installation will probably be 
> what you are looking for.
>
> On Friday, March 23, 2018 at 4:21:32 AM UTC-7, Dirk Heinrichs wrote:
>
> From: jenkins...@googlegroups.com [mailto:jenkins...@googlegroups.com] On 
> Behalf Of Dirk Heinrichs 
>
> > I'm currently seeing a strange problem where I get a Jgit exception 
> like: 
> > 
> > FATAL: Walk failure. 
> > org.eclipse.jgit.errors.MissingObjectException: Missing commit 
>  
> > 
> > in a job that's configured to use native Git. In fact, I'm also getting 
> the usual native Git output above the exception. 
> > But why is it using Jgit at all? 
>
> Could resolve it by temp. adding a "Wipe out repository & force clone". 
> However, the question remains: Why is it running Jgit at all? 
>
> Bye... 
>
> Dirk 
>
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Jenkins Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to jenkinsci-use...@googlegroups.com .
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/jenkinsci-users/d10250e8-4ee2-410f-9d51-5b21c92fadf4%40googlegroups.com
>  
> 
> .
> For more options, visit https://groups.google.com/d/optout 
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/c9ff6d70-62d6-4bcc-93be-cdcfdf456a3a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Using Gradle in Pipeline

2018-05-16 Thread Brian Ray
We are, extensively.

I may be interpreting the issue wrong, but it seems like a more "native" 
pipeline API is not necessarily the blocker here.

Does this help at all?:

sh "gradle build --info --console=plain"

Those switches increase logging verbosity and eliminate the control 
characters that Jenkins console renders poorly.

More doc on Gradle's logging and other command line options is here 
.

On Thursday, April 12, 2018 at 11:02:43 PM UTC-7, Sverre Moe wrote:
>
> We are currently using Maven for building our applications. 
>
> Our Jenkins maven pipeline are using the withMaven step from Pipeline 
> Maven Integration.
>
> I have written gradle build scripts for our projects and begun to write 
> the Pipeline build script to build gradle.
>
> We could really use an Pipeline Gradle Integration plugin and an 
> withGradle step.
>
> In the absence of such a plugin I am left with
> tool name: 'gradle-4.6', type: 'gradle'
> sh "gradle build"
>
> I think I have to put some verbosity to gradle. The Jenkins console output 
> did not provide any insight while gradle was running the JUnit tests.
>
> :processResources
> :classes
> :jar
> :javadoc
> :javadocJar
> :sourcesJar
> :assemble
> :startMockServer
>
> :processTestResources
> :testClasses
> :test
>
> :stopMockServer
> :check
> :build
>
>
> After :test there was no output for about 2 minutes. Not until task test was 
> finished.
>
> Not knowing if the build has halted, a test taking to long, or some other 
> problem.
>
>
> Would be great to have something like the dynamic output from running gradle
>
> <=> 75% EXECUTING [15s]
>
> > :test > 100 tests completed
>
> > :test > Executing test com.company.api.ConnectionTest
>
>
>
> Running Gradle with --console=rich gives me this output, but it is a mess.
>
> :test [m [0K [7D [1B [2A [1m< [0;32;1m= [0;39;1m> 75% 
> EXECUTING [9s] [m [34D [1B [1m> :test [m [7D [1B [2A [1m< [0;32;1m= 
> [0;39;1m> 75% EXECUTING [9s] [m [34D [1B [1m> :test > 0 tests completed 
> [m [27D [1B [2A [1m< [0;32;1m= [0;39;1m> 75% EXECUTING [9s] [m 
> [34D [1B [1m> :test > 0 tests completed [m [27D [1B [2A [1m< 
> [0;32;1m= [0;39;1m> 75% EXECUTING [9s] [m [34D [1B [1m> :test > 
> 0 tests completed [m [27D [1B [2A [1m< [0;32;1m= [0;39;1m> 75% 
> EXECUTING [9s] [m [34D [1B [1m> :test > 0 tests completed [m [27D [1B [2A 
> [1m< [0;32;1m= [0;39;1m> 75% EXECUTING [9s] [m [34D [1B [1m> 
> :test > 0 tests 
> ...
> ...
> > 330 tests completed [m [29D [1B [1m> :test > Executing test 
> com.company.server.api.commands.Command1Test [m [0K [68D [1B [3A [1m< 
> [0;32;1m= [0;39;1m> 75% EXECUTING [1m 29s] [m [38D [1B [1m> 
> :test > 412 tests completed [m [29D [1B [1m> :test > Executing test 
> com.company.server.api.commands.Command2Test [m [76D [1B [3A [1m< 
> [0;32;1m= [0;39;1m> 75% EXECUTING [1m 29s] [m [38D [1B [1m> 
> :test > 507 tests completed [m [29D [1B [1m> :test > Executing test 
> com.company.server.api.commands.Command3Test [m [0K [68D [1B [3A [1m< 
> [0;32;1m= [0;39;1m> 75% EXECUTING [1m 29s] [m [38D [1B [1m> 
> :test > 661 tests completed [m [29D [1B> IDLE [0K [6D [1B [3A [1m< 
> [0;32;1m= [0;39;1m> 75% EXECUTING [1m 29s] [m [38D [1B [1m> 
> :test > 661 tests completed [m [29D [2B [3A [1m< [0;32;1m= 
> [0;39;1m> 75% EXECUTING [1m 29s] [m [38D [1B [1m> :test > 661 tests 
> completed [m [29D [2B [3A [1m< [0;32;1m= [0;39;1m> 75% 
> EXECUTING [1m 30s] [m [38D [1B [1m> :test > 661 tests completed [m [29D [2B 
> [3A [1m< [0;32;1m= [0;39;1m> 75% EXECUTING [1m 30s] [m [38D [1B 
> [1m> :test [m [0K [7D [2B [3A [1m< [0;32;1m= [0;39;1m> 75% 
> EXECUTING [1m 30s] [m [38D [1B [1m> :test [m [7D [2B [3A [0K
> [0K
> [32;1mBUILD SUCCESSFUL [0;39m in 1m 32s
> 11 actionable tasks: 11 executed
>
>
>
> Are anyone using gradle in their Jenkins pipeline?
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/78434a79-2816-499e-8b5c-f4215e55a7be%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Plugin Updates for jenkins 1.6x ?

2018-05-16 Thread Torsten Reinhard
Hi, 

I know there is Jenkins 2.x out for quite a while - but for "historical 
reasons" we still rely on the old 1.6x version in some projects.
Is there a way to get the latest plugin updates for that version without 
downloading them manually? 

Most of the shown Updates depend on 2.x version, so I always have to 
manually upload an old version of the requested plugin, 
which is not very handy.
Wouldn´t it make sense to have an own update-site, where the latest 
versions of the 1.6x release are available?

Thanx for your answers, 

regards, Torsten

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/6d84cae9-d979-4814-9ae4-de55fcb4130d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Regarding plugin installation issue

2018-05-16 Thread R. Tyler Croy
(replies inline)

On Wed, 16 May 2018, kirti.rast...@winvest-global.com wrote:

> Hi All,
> 
> While launching jenkins through apache tomcat jenkins doesnt allow me to 
> install plugins. Now i want to install manualy but while installing i am 
> getting error through hpi. 
> Please help me out


How are you installing plugins? One (token-macro) wasn't installed correctly
and that looks like it's causing the dependency resolution problems.

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/20180516142111.GF3395%40grape.lasagna.io.
For more options, visit https://groups.google.com/d/optout.


signature.asc
Description: PGP signature


Re: Post commit hook failed with exit code 127: --post-data not found

2018-05-16 Thread R. Tyler Croy
(replies inline)

On Tue, 15 May 2018, jack wrote:

> Hi everyone,
> 
> I'm recently working on this automation solution for my dev team using SVN 
> as version control, to run builds and tests automatically when a commit 
> occurs. 
> 
> But each time when I commit my post-commit hook script fails me :/
> 
> post-commit hook failed (exit code 127) with output:
> /url/to/our/svnServer/hooks/post-commit: 67: --post-data: not found  (which 
> is odd : the --post-data line is not at line 67 which is the last line of 
> the file)
> 
> I'm not able to find the exact same problem on the web so no solution 
> found... My script looks like this (the same script from the official doc):
> 
> 
> 
> REPOS="$1"
> REV="$2"
> 
> #path to svnlook
> UUID=`svnlook uuid $REPOS`
> 
> #notifying jenkins for repository change
> /usr/bin/wget \
>   --header `wget -q --output-document - \
> 
> 'http://my_jenkins_url/crumbIssuer/api/xml?xpath=concat(//crumbRequestField,":",//crumb)'`
>   --post-data "`svnlook changed --revision $REV $REPOS`" \
>   --timeout=2 \
>   http://my_jenkins_url:/subversion/${UUID}/notifyCommit?rev=$REV




While this isn't a Jenkins issue at all, I'll give ya a hand :)


There's a trailing \ character which is missing after the crumbIssuer line in
the script, causing the script interpreter to try to parse the next line as if
it were a new command (`--post-data`)



-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/20180516141729.GE3395%40grape.lasagna.io.
For more options, visit https://groups.google.com/d/optout.


signature.asc
Description: PGP signature


Regarding plugin installation issue

2018-05-16 Thread kirti . rastogi
Hi All,

While launching jenkins through apache tomcat jenkins doesnt allow me to 
install plugins. Now i want to install manualy but while installing i am 
getting error through hpi. 
Please help me out

error is-

java.io.IOException: Docker plugin v1.1.4 failed to load.
 - apache-httpcomponents-client-4-api v4.5.3-2.0 is missing. To fix, install 
v4.5.3-2.0 or later.
 - bouncycastle-api v2.16.2 is missing. To fix, install v2.16.2 or later.
 - docker-commons v1.9 is missing. To fix, install v1.9 or later.
 - docker-java-api v3.0.14 is missing. To fix, install v3.0.14 or later.
 - durable-task v1.16 is missing. To fix, install v1.16 or later.
 - ssh-slaves v1.22 is missing. To fix, install v1.22 or later.
 - token-macro v2.3 is missing. To fix, install v2.3 or later.
at 
hudson.PluginWrapper.resolvePluginDependencies(PluginWrapper.java:626)
at hudson.PluginManager.dynamicLoad(PluginManager.java:872)

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/714ab1a9-2dd0-4e61-b424-1a46a48450e9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Error while fetching all of the branches of Jenkins

2018-05-16 Thread Tharanya Prem Kumar
I get the below error while i save to fetch all of the branches in the 
general Jenkins settings.


Started by user Tharanya Dillibabu
[Tue May 15 14:26:29 BST 2018] Starting branch indexing...
 > git.exe --version # timeout=10
using GIT_SSH to set credentials Tharanya
 > git.exe ls-remote --symref  # timeout=10
ERROR: [Tue May 15 14:26:44 BST 2018] Could not update folder level actions 
from source 8ba9bc92-2a06-4b21-b608-cc2b9a1e5919
hudson.plugins.git.GitException: Command "git.exe ls-remote --symref " returned 
status code 128:
stdout: 
stderr: Load key "C:\\WINDOWS\\TEMP\\ssh1754654608932235849.key": invalid format
Permission denied, please try again.
Permission denied, please try again.
Received disconnect from 192.168.10.8 port 22:2: Too many authentication 
failures
Disconnected from 192.168.10.8 port 22
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2002)
at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:1721)
at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:1625)
at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:1616)
at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl.getRemoteSymbolicReferences(CliGitAPIImpl.java:2879)
at 
jenkins.plugins.git.AbstractGitSCMSource.retrieveActions(AbstractGitSCMSource.java:1093)
at jenkins.scm.api.SCMSource.fetchActions(SCMSource.java:748)
at 
jenkins.branch.MultiBranchProject.computeChildren(MultiBranchProject.java:590)
at 
com.cloudbees.hudson.plugins.folder.computed.ComputedFolder.updateChildren(ComputedFolder.java:276)
at 
com.cloudbees.hudson.plugins.folder.computed.FolderComputation.run(FolderComputation.java:165)
at 
jenkins.branch.MultiBranchProject$BranchIndexing.run(MultiBranchProject.java:1024)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
[Tue May 15 14:26:44 BST 2018] Finished branch indexing. Indexing took 15 sec
FATAL: Failed to recompute children of Vuture Vx
hudson.plugins.git.GitException: Command "git.exe ls-remote --symref " returned 
status code 128:
stdout: 
stderr: Load key "C:\\WINDOWS\\TEMP\\ssh1754654608932235849.key": invalid format
Permission denied, please try again.
Permission denied, please try again.
Received disconnect from 192.168.10.8 port 22:2: Too many authentication 
failures
Disconnected from 192.168.10.8 port 22
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2002)
at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:1721)
at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:1625)
at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:1616)
at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl.getRemoteSymbolicReferences(CliGitAPIImpl.java:2879)
at 
jenkins.plugins.git.AbstractGitSCMSource.retrieveActions(AbstractGitSCMSource.java:1093)
at jenkins.scm.api.SCMSource.fetchActions(SCMSource.java:748)
at 
jenkins.branch.MultiBranchProject.computeChildren(MultiBranchProject.java:590)
at 
com.cloudbees.hudson.plugins.folder.computed.ComputedFolder.updateChildren(ComputedFolder.java:276)
at 
com.cloudbees.hudson.plugins.folder.computed.FolderComputation.run(FolderComputation.java:165)
at 
jenkins.branch.MultiBranchProject$BranchIndexing.run(MultiBranchProject.java:1024)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
Finished: FAILURE

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/0fd9bb11-f3dd-40ca-9c73-9e697e2b5909%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Post commit hook failed with exit code 127: --post-data not found

2018-05-16 Thread jack
Hi everyone,

I'm recently working on this automation solution for my dev team using SVN 
as version control, to run builds and tests automatically when a commit 
occurs. 

But each time when I commit my post-commit hook script fails me :/

post-commit hook failed (exit code 127) with output:
/url/to/our/svnServer/hooks/post-commit: 67: --post-data: not found  (which 
is odd : the --post-data line is not at line 67 which is the last line of 
the file)

I'm not able to find the exact same problem on the web so no solution 
found... My script looks like this (the same script from the official doc):



REPOS="$1"
REV="$2"

#path to svnlook
UUID=`svnlook uuid $REPOS`

#notifying jenkins for repository change
/usr/bin/wget \
  --header `wget -q --output-document - \

'http://my_jenkins_url/crumbIssuer/api/xml?xpath=concat(//crumbRequestField,":",//crumb)'`
  --post-data "`svnlook changed --revision $REV $REPOS`" \
  --timeout=2 \
  http://my_jenkins_url:/subversion/${UUID}/notifyCommit?rev=$REV



Jenkins is on my machine, SVN server on another machine. So I'm using Putty 
to access to all the hooks on that machine.

In the global security section I have "Jenkins users database" checked, in 
autorisations I use matrix based security and I already gave anonymous 
users Read permission for jobs; As for my job config I already checked the 
SCM polling option and have a valid CRON (which works perfectly), also I 
checked "trigger builds remotely" and provided my own token (works fine 
too).

Do you think it might have something to do with the credentials that I set 
for Jenkins job to link with my repo on SVN? I haven't quite understood how 
this affects the commit: should I add something like --username and 
--userpassword into my post-commit hook accordingly to my credentials 
settings? Or is this because SVN is not on my machine and I'm using a SSH 
client to access hooks there yet I haven't set SSH server option in 
Jenkins? 

What might be the problem in your opinion? Does someone know how to use 
post-commit hook? Thank you so much if someone can provide some advice and 
insights :)


-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/212cd583-b9b1-4b8e-84fd-7cef6366d80f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Test aborted

2018-05-16 Thread cmautosanity
Hi,
I'm using Jenkins to run my automation tests.
Sometimes the job is fail because of one of the tests is "Aborted" and it 
cause the all job to stop and fail
while debugging it I saw the test is Aborted because of "Thread was being 
aborted" exception which sometimes it's hapend and other times it's not

1. How can I change the job to continue after one test is Aborted?
2. There is a solution for this threads issue?

Thanks!

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/06271594-48da-4c6e-8e89-335e0077bc0b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins Setup Wizard Fail with 'An error occurred during installation: No such plugin: cloudbees-folder'

2018-05-16 Thread masaru tsuchiyama
I clean-installed Fedora 28 (64bit) on Virtualbox, and installed jenkins
2.122.
But the result was the same.

If you need further information to investigate, please let me know.

Regards.
Masaru.


2018年5月5日(土) 14:00 masaru tsuchiyama :

> Hi,
>
> Jenkins Setup Wizard failed with
>  'An error occurred during installation: No such plugin: cloudbees-folder'
> for Jeknkins 2.119 on Fedora 28.
>
> I tried to install and setup Jenkins in the following procedures.
> --
> sudo wget -O /etc/yum.repos.d/jenkins.repo
> https://pkg.jenkins.io/redhat/jenkins.repo
> sudo rpm --import https://pkg.jenkins.io/redhat/jenkins.io.key
> sudo dnf install -y jenkins
> sudo chkconfig jenkins on
> sudo /etc/init.d/jenkins start
> sudo firewall-cmd --permanent --add-port=8080/tcp
> sudo firewall-cmd --reload
>
> access http://locallhost:8080
> paste the result of 'sudo cat
> /var/lib/jenkins/secrets/initialAdminPassword' to the browser.
>
> select 'Install Suggested Plugins'.
>
> I got the following error.
> An error occurred
> An error occurred during installation: No such plugin: cloudbees-folder
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/CAKQP9efm%2BUKVbMUncSUDnSAxPA3LVESuP53YMhbWoxjqgz1W1Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.