[cas-user] Re: CAS 5.2 return JWT for service

2018-04-13 Thread William E.
Posting resolution in hopes it may help someone else out.

In cas 5.2 you are supposed to use the jat property jwtAsServiceTicket but 
it looks like there may be a bug in cas where you need to use the 
(deprecated) jwtAsResponse instead.

properties : {

"@class" : "java.util.HashMap",

"jwtAsResponse" : {

  "@class" : "org.apereo.cas.services.DefaultRegisteredServiceProperty",

  "values" : [ "java.util.HashSet", [ "true" ] ]

}

  }



Additionally, my bad on this one from misunderstanding the cas documents, 
the 

cas.authn.token.crypto.encryption.key and cas.authn.token.crypto.signing.key 
accept key values directly, not file paths to files containing the keys.  


Anyway, much thanks to Paul at Unicon for all his help.  Support money well 
spent.


-William


On Wednesday, April 11, 2018 at 5:40:16 PM UTC-5, William E. wrote:
>
> Hi all,
>
>
> I am trying to follow the CAS docs to configure a service to return jwt's 
> but not having much success. 
>
> Docs I am reading on this:
>
>  
> https://apereo.github.io/cas/5.2.x/installation/Configure-ServiceTicket-JWT.html
>  
>  https://apereo.github.io/2017/10/17/cas-jwt-authn-with-duo/ (JWT Service 
> Tickets portion)
>
>
> My cas.properties has:
>
> cas.authn.token.crypto.enabled=true
> cas.authn.token.crypto.encryptionEnabled=true
> cas.authn.token.crypto.signing.key=/etc/cas/config/token-signing.jwk
> cas.authn.token.crypto.signing.keySize=512
> cas.authn.token.crypto.encryption.key=/etc/cas/config/token-encryption.jwk
> cas.authn.token.crypto.encryption.keySize=256
> cas.authn.token.crypto.alg=AES
>
>
> jwk's generated per docs:
>
> wget https://raw.githubusercontent.com/apereo/cas/master/etc/jwk-gen.jar
> java -jar jwk-gen.jar -t oct -s 512 >/etc/cas/config/token-signing.jwk
> java -jar jwk-gen.jar -t oct -s 256 >/etc/cas/config/token-encryption.jwk
>
> $ file /etc/cas/config/token*
> /etc/cas/config/token-encryption.jwk: ASCII text
> /etc/cas/config/token-signing.jwk: ASCII text
>
>
> Using maven overlay, my pom.xml has the rest snippet:
>
> 
> org.apereo.cas
> cas-server-support-token-tickets
> ${cas.version}
> 
>
>
> My service has the jwt as ticket property:
>
> properties:
> {
> @class: java.util.LinkedHashMap
> jwtAsServiceTicket:
> {
> @class: org.apereo.cas.services.DefaultRegisteredServiceProperty
> values:
> [
> java.util.HashSet
> [
> "true"
> ]
> ]
> }
> }
>
> In the CAS CLI I can generate a jwt that appears valid. But when I use my 
> service via web browser I see no header or cookie referencing a ticket with 
> JWT- prefix, nor a jwt formatted base64 string, I just see the normal ST- 
> ticket. I'm using a simple tomcat webapp wit cas client filters and 
> java-cas-client 3.5.0. 
>
> Anyone made JWT's work yet for cas 5.2.3?  Any idea what step I missed?
>
> Thanks,
> William
>
>
>

-- 
- Website: https://apereo.github.io/cas
- Gitter Chatroom: https://gitter.im/apereo/cas
- List Guidelines: https://goo.gl/1VRrw7
- Contributions: https://goo.gl/mh7qDG
--- 
You received this message because you are subscribed to the Google Groups "CAS 
Community" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cas-user+unsubscr...@apereo.org.
To view this discussion on the web visit 
https://groups.google.com/a/apereo.org/d/msgid/cas-user/d8e6b961-be8a-4018-8c1b-e5b8d28a0759%40apereo.org.


[cas-user] CAS 5.2.4 Release Announcement

2018-04-13 Thread Misagh Moayyed
CAS 5.2.4 is released: 
https://github.com/apereo/cas/releases/tag/v5.2.4 

--Misagh 

-- 
- Website: https://apereo.github.io/cas
- Gitter Chatroom: https://gitter.im/apereo/cas
- List Guidelines: https://goo.gl/1VRrw7
- Contributions: https://goo.gl/mh7qDG
--- 
You received this message because you are subscribed to the Google Groups "CAS 
Community" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cas-user+unsubscr...@apereo.org.
To view this discussion on the web visit 
https://groups.google.com/a/apereo.org/d/msgid/cas-user/979843008.19780086.1523647455693.JavaMail.zimbra%40unicon.net.


Re: [cas-user] Is it possible to delegate CAS authentication to a custom remote identity provider ?

2018-04-13 Thread Ray Bon
Are you trying to build CAS or did you download the code just for Trusted 
Authentication?
Building a single class (or even a few) can result in a lot of dependency 
management (as you have seen). Sometimes the dependency you add brings in 
others behind the scenes (transitive dependencies). Your error may be a result 
of mismatched versions.
If you still want to proceed down this route, you can see what libraries are 
being pulled into your build with:
mvn dependency:tree

There is a grails command to do the same if that is what you are using.

Ray

On Fri, 2018-04-13 at 10:25 -0700, JON wrote:
Hi
Before following your advice, I must tell you that if I delete the code, 
everything works fine (including SAML IdP), with the exception of Trusted 
Authentication.
The code that I am trying to compile, is the original downloaded from the 
repository repository.
I just inserted it to start with a known stable version.



El viernes, 13 de abril de 2018, 17:33:20 (UTC+2), Manfredo Hopp escribió:
Hi you just add maven/gradle dependency to original overlay

El viernes, 13 de abril de 2018, JON  
escribió:
Hi again

I am trying to test the Trusted Authentication, adding code in the Maven 
Overlay. The code is the one existing in the cas-server-support-trusted module. 
I have been falling in a cascade of compilation errors that I have tried to 
overcome by adding dependencies in pom.xml
The errors have been getting more and more primitive. And in the end I have 
come to

[ERROR] 
/H:/aplic_saml_apereo_v5.2.0/cas-overlay-template-master/src/main/java/org/apereo/cas/adaptors/trusted/authentication/principal/ShibbolethServiceProviderRequestPrincipalAttributesExtractor.java:[26,31]
 cannot find symbol
[ERROR]   symbol:   method toUpperCase()
[ERROR]   location: variable t of type java.lang.Object
[ERROR] 
/H:/aplic_saml_apereo_v5.2.0/cas-overlay-template-master/src/main/java/org/apereo/cas/adaptors/trusted/authentication/principal/ShibbolethServiceProviderRequestPrincipalAttributesExtractor.java:[27,71]
 incompatible types: java.lang.Object cannot be converted to java.lang.String
[ERROR] 
/H:/aplic_saml_apereo_v5.2.0/cas-overlay-template-master/src/main/java/org/apereo/cas/adaptors/trusted/authentication/principal/ShibbolethServiceProviderRequestPrincipalAttributesExtractor.java:[28,49]
 incompatible types: java.lang.Object cannot be converted to java.lang.String
[ERROR] 
/H:/aplic_saml_apereo_v5.2.0/cas-overlay-template-master/src/main/java/org/apereo/cas/adaptors/trusted/authentication/principal/ShibbolethServiceProviderRequestPrincipalAttributesExtractor.java:[29,25]
 incompatible types: java.lang.Object cannot be converted to 
java.util.Map
[ERROR] -> [Help 1]
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal 
org.apache.maven.plugins:maven-compiler-plugin:3.3:compile (default-compile) on 
project cas-overlay: Compilation failure


Thank you very much


El domingo, 1 de abril de 2018, 23:46:07 (UTC+2), Manfredo Hopp escribió:
See trusted authentication.
Local cas server should receive translated remote id entity through valve or 
other mechanism.


El domingo, 1 de abril de 2018, JON JON  escribió:
Hi

Is it possible to delegate authentication to a custom remote identity provider?

This does not speak CAS, SAML, OAuth or OpenId Connect. It has its own SSO 
mechanism. End users use web browser to interact.

Our identity provider has its own authentication mechanism, based on http, over 
j2ee, for users registered in a database.
It can return a token with the user's profile (authentication mechanism, 
identity, context, and authorization attributes).

Now we need to delegate CAS authentication to this identity provider. Do you 
think it is possible with any of the mechanisms provided by CAS?

The ultimate goal is for CAS to be a SAML identity provider based on the 
identity information provided by our identity provider.

Thanks in advance

Jon

--
- Website: https://apereo.github.io/cas
- Gitter Chatroom: https://gitter.im/apereo/cas
- List Guidelines: https://goo.gl/1VRrw7
- Contributions: https://goo.gl/mh7qDG
---
You received this message because you are subscribed to the Google Groups "CAS 
Community" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cas-user+u...@apereo.org.
To view this discussion on the web visit 
https://groups.google.com/a/apereo.org/d/msgid/cas-user/9289aac5-4ab1-43a0-9a72-b6d31e2e67e3%40apereo.org.



--
- Website: https://apereo.github.io/cas
- Gitter Chatroom: https://gitter.im/apereo/cas
- List Guidelines: https://goo.gl/1VRrw7
- Contributions: https://goo.gl/mh7qDG
---
You received this message because you are subscribed to the Google Groups "CAS 
Community" group.
To unsubscribe from this group and stop 

Re: [cas-user] Is it possible to delegate CAS authentication to a custom remote identity provider ?

2018-04-13 Thread JON
Hi
Before following your advice, I must tell you that if I delete the code, 
everything works fine (including SAML IdP), with the exception of Trusted 
Authentication.
The code that I am trying to compile, is the original downloaded from the 
repository repository.
I just inserted it to start with a known stable version.



El viernes, 13 de abril de 2018, 17:33:20 (UTC+2), Manfredo Hopp escribió:
>
> Hi you just add maven/gradle dependency to original overlay
>
> El viernes, 13 de abril de 2018, JON  
> escribió:
>
>> Hi again
>>
>> I am trying to test the Trusted Authentication, adding code in the Maven 
>> Overlay. The code is the one existing in the cas-server-support-trusted 
>> module. I have been falling in a cascade of compilation errors that I have 
>> tried to overcome by adding dependencies in pom.xml
>> The errors have been getting more and more primitive. And in the end I 
>> have come to
>>
>> [ERROR] 
>> /H:/aplic_saml_apereo_v5.2.0/cas-overlay-template-master/src/main/java/org/apereo/cas/adaptors/trusted/authentication/principal/ShibbolethServiceProviderRequestPrincipalAttributesExtractor.java:[26,31]
>>  
>> cannot find symbol
>> [ERROR]   symbol:   method toUpperCase()
>> [ERROR]   location: variable t of type java.lang.Object
>> [ERROR] 
>> /H:/aplic_saml_apereo_v5.2.0/cas-overlay-template-master/src/main/java/org/apereo/cas/adaptors/trusted/authentication/principal/ShibbolethServiceProviderRequestPrincipalAttributesExtractor.java:[27,71]
>>  
>> incompatible types: java.lang.Object cannot be converted to java.lang.String
>> [ERROR] 
>> /H:/aplic_saml_apereo_v5.2.0/cas-overlay-template-master/src/main/java/org/apereo/cas/adaptors/trusted/authentication/principal/ShibbolethServiceProviderRequestPrincipalAttributesExtractor.java:[28,49]
>>  
>> incompatible types: java.lang.Object cannot be converted to java.lang.String
>> [ERROR] 
>> /H:/aplic_saml_apereo_v5.2.0/cas-overlay-template-master/src/main/java/org/apereo/cas/adaptors/trusted/authentication/principal/ShibbolethServiceProviderRequestPrincipalAttributesExtractor.java:[29,25]
>>  
>> incompatible types: java.lang.Object cannot be converted to 
>> java.util.Map
>> [ERROR] -> [Help 1]
>> org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute 
>> goal org.apache.maven.plugins:maven-compiler-plugin:3.3:compile 
>> (default-compile) on project cas-overlay: Compilation failure
>>
>>
>> Thank you very much
>>
>>
>> El domingo, 1 de abril de 2018, 23:46:07 (UTC+2), Manfredo Hopp escribió:
>>>
>>> See trusted authentication.
>>> Local cas server should receive translated remote id entity through 
>>> valve or other mechanism. 
>>>
>>>
>>> El domingo, 1 de abril de 2018, JON JON  escribió:
>>>
 Hi

 Is it possible to delegate authentication to a custom remote identity 
 provider?

 This does not speak CAS, SAML, OAuth or OpenId Connect. It has its own 
 SSO mechanism. End users use web browser to interact.

 Our identity provider has its own authentication mechanism, based on 
 http, over j2ee, for users registered in a database.
 It can return a token with the user's profile (authentication 
 mechanism, identity, context, and authorization attributes).

 Now we need to delegate CAS authentication to this identity provider. 
 Do you think it is possible with any of the mechanisms provided by CAS?

 The ultimate goal is for CAS to be a SAML identity provider based on 
 the identity information provided by our identity provider.

 Thanks in advance

 Jon

 -- 
 - Website: https://apereo.github.io/cas
 - Gitter Chatroom: https://gitter.im/apereo/cas
 - List Guidelines: https://goo.gl/1VRrw7
 - Contributions: https://goo.gl/mh7qDG
 --- 
 You received this message because you are subscribed to the Google 
 Groups "CAS Community" group.
 To unsubscribe from this group and stop receiving emails from it, send 
 an email to cas-user+u...@apereo.org.
 To view this discussion on the web visit 
 https://groups.google.com/a/apereo.org/d/msgid/cas-user/9289aac5-4ab1-43a0-9a72-b6d31e2e67e3%40apereo.org
  
 
 .

>>> -- 
>> - Website: https://apereo.github.io/cas
>> - Gitter Chatroom: https://gitter.im/apereo/cas
>> - List Guidelines: https://goo.gl/1VRrw7
>> - Contributions: https://goo.gl/mh7qDG
>> --- 
>> You received this message because you are subscribed to the Google Groups 
>> "CAS Community" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to cas-user+u...@apereo.org .
>> To view this discussion on the web visit 
>> https://groups.google.com/a/apereo.org/d/msgid/cas-user/a64d99c2-0365-4860-a97a-6e68b5efa218%40apereo.org

Re: [cas-user] Is it possible to delegate CAS authentication to a custom remote identity provider ?

2018-04-13 Thread Man H
Hi you just add maven/gradle dependency to original overlay

El viernes, 13 de abril de 2018, JON  escribió:

> Hi again
>
> I am trying to test the Trusted Authentication, adding code in the Maven
> Overlay. The code is the one existing in the cas-server-support-trusted
> module. I have been falling in a cascade of compilation errors that I have
> tried to overcome by adding dependencies in pom.xml
> The errors have been getting more and more primitive. And in the end I
> have come to
>
> [ERROR] /H:/aplic_saml_apereo_v5.2.0/cas-overlay-template-master/
> src/main/java/org/apereo/cas/adaptors/trusted/authentication/principal/
> ShibbolethServiceProviderRequestPrincipalAttributesExtractor.java:[26,31]
> cannot find symbol
> [ERROR]   symbol:   method toUpperCase()
> [ERROR]   location: variable t of type java.lang.Object
> [ERROR] /H:/aplic_saml_apereo_v5.2.0/cas-overlay-template-master/
> src/main/java/org/apereo/cas/adaptors/trusted/authentication/principal/
> ShibbolethServiceProviderRequestPrincipalAttributesExtractor.java:[27,71]
> incompatible types: java.lang.Object cannot be converted to java.lang.String
> [ERROR] /H:/aplic_saml_apereo_v5.2.0/cas-overlay-template-master/
> src/main/java/org/apereo/cas/adaptors/trusted/authentication/principal/
> ShibbolethServiceProviderRequestPrincipalAttributesExtractor.java:[28,49]
> incompatible types: java.lang.Object cannot be converted to java.lang.String
> [ERROR] /H:/aplic_saml_apereo_v5.2.0/cas-overlay-template-master/
> src/main/java/org/apereo/cas/adaptors/trusted/authentication/principal/
> ShibbolethServiceProviderRequestPrincipalAttributesExtractor.java:[29,25]
> incompatible types: java.lang.Object cannot be converted to
> java.util.Map
> [ERROR] -> [Help 1]
> org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute
> goal org.apache.maven.plugins:maven-compiler-plugin:3.3:compile
> (default-compile) on project cas-overlay: Compilation failure
>
>
> Thank you very much
>
>
> El domingo, 1 de abril de 2018, 23:46:07 (UTC+2), Manfredo Hopp escribió:
>>
>> See trusted authentication.
>> Local cas server should receive translated remote id entity through valve
>> or other mechanism.
>>
>>
>> El domingo, 1 de abril de 2018, JON JON  escribió:
>>
>>> Hi
>>>
>>> Is it possible to delegate authentication to a custom remote identity
>>> provider?
>>>
>>> This does not speak CAS, SAML, OAuth or OpenId Connect. It has its own
>>> SSO mechanism. End users use web browser to interact.
>>>
>>> Our identity provider has its own authentication mechanism, based on
>>> http, over j2ee, for users registered in a database.
>>> It can return a token with the user's profile (authentication mechanism,
>>> identity, context, and authorization attributes).
>>>
>>> Now we need to delegate CAS authentication to this identity provider. Do
>>> you think it is possible with any of the mechanisms provided by CAS?
>>>
>>> The ultimate goal is for CAS to be a SAML identity provider based on the
>>> identity information provided by our identity provider.
>>>
>>> Thanks in advance
>>>
>>> Jon
>>>
>>> --
>>> - Website: https://apereo.github.io/cas
>>> - Gitter Chatroom: https://gitter.im/apereo/cas
>>> - List Guidelines: https://goo.gl/1VRrw7
>>> - Contributions: https://goo.gl/mh7qDG
>>> ---
>>> You received this message because you are subscribed to the Google
>>> Groups "CAS Community" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to cas-user+u...@apereo.org.
>>> To view this discussion on the web visit https://groups.google.com/a/ap
>>> ereo.org/d/msgid/cas-user/9289aac5-4ab1-43a0-9a72-b6d31e2e67
>>> e3%40apereo.org
>>> 
>>> .
>>>
>> --
> - Website: https://apereo.github.io/cas
> - Gitter Chatroom: https://gitter.im/apereo/cas
> - List Guidelines: https://goo.gl/1VRrw7
> - Contributions: https://goo.gl/mh7qDG
> ---
> You received this message because you are subscribed to the Google Groups
> "CAS Community" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to cas-user+unsubscr...@apereo.org.
> To view this discussion on the web visit https://groups.google.com/a/
> apereo.org/d/msgid/cas-user/a64d99c2-0365-4860-a97a-
> 6e68b5efa218%40apereo.org
> 
> .
>

-- 
- Website: https://apereo.github.io/cas
- Gitter Chatroom: https://gitter.im/apereo/cas
- List Guidelines: https://goo.gl/1VRrw7
- Contributions: https://goo.gl/mh7qDG
--- 
You received this message because you are subscribed to the Google Groups "CAS 
Community" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to 

[cas-user] Re: Help! to assign an order value to an authentication handler and cotrolling its execution sequence.

2018-04-13 Thread Lalot Dominique
Hello

Even if that thread is old, I believe that sharing information is good
We were looking for the same thing:
We tried to change the name
tried to swap ldap[0] to ldap[1]
without success -> don't understand what the algo could be..
curl to reread cas.properties is not working very well, so 2 minutes 
between each try..

And finaly, that was (v5.2.3):

*cas.authn.ldap[0].order=0 *
And it works as expected

Le vendredi 24 novembre 2017 10:15:29 UTC+1, kjlorenzo a écrit :
>
> Hello!
>
> How I can set the execution priority order of handler. It is done in the 
> cas.properties??
>
> We have 3:
> 1._ Active Directory
> 2._ Ldap (Directory Services 386)
> 3._ bb.dd.
>
> In the cas.properties I have it configured in the order I want it to run, 
> but it is not executed in the desired order.
> Can somebody help me. The doc is somewhat confusing.
> Some example of how to do it.
>
> Thanks for your feedback.
>

-- 
- Website: https://apereo.github.io/cas
- Gitter Chatroom: https://gitter.im/apereo/cas
- List Guidelines: https://goo.gl/1VRrw7
- Contributions: https://goo.gl/mh7qDG
--- 
You received this message because you are subscribed to the Google Groups "CAS 
Community" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cas-user+unsubscr...@apereo.org.
To view this discussion on the web visit 
https://groups.google.com/a/apereo.org/d/msgid/cas-user/04b37641-00e6-48d0-bb2e-cfaab84f543e%40apereo.org.


Re: [cas-user] Is it possible to delegate CAS authentication to a custom remote identity provider ?

2018-04-13 Thread JON
Hi again

I am trying to test the Trusted Authentication, adding code in the Maven 
Overlay. The code is the one existing in the cas-server-support-trusted 
module. I have been falling in a cascade of compilation errors that I have 
tried to overcome by adding dependencies in pom.xml
The errors have been getting more and more primitive. And in the end I have 
come to

[ERROR] 
/H:/aplic_saml_apereo_v5.2.0/cas-overlay-template-master/src/main/java/org/apereo/cas/adaptors/trusted/authentication/principal/ShibbolethServiceProviderRequestPrincipalAttributesExtractor.java:[26,31]
 
cannot find symbol
[ERROR]   symbol:   method toUpperCase()
[ERROR]   location: variable t of type java.lang.Object
[ERROR] 
/H:/aplic_saml_apereo_v5.2.0/cas-overlay-template-master/src/main/java/org/apereo/cas/adaptors/trusted/authentication/principal/ShibbolethServiceProviderRequestPrincipalAttributesExtractor.java:[27,71]
 
incompatible types: java.lang.Object cannot be converted to java.lang.String
[ERROR] 
/H:/aplic_saml_apereo_v5.2.0/cas-overlay-template-master/src/main/java/org/apereo/cas/adaptors/trusted/authentication/principal/ShibbolethServiceProviderRequestPrincipalAttributesExtractor.java:[28,49]
 
incompatible types: java.lang.Object cannot be converted to java.lang.String
[ERROR] 
/H:/aplic_saml_apereo_v5.2.0/cas-overlay-template-master/src/main/java/org/apereo/cas/adaptors/trusted/authentication/principal/ShibbolethServiceProviderRequestPrincipalAttributesExtractor.java:[29,25]
 
incompatible types: java.lang.Object cannot be converted to 
java.util.Map
[ERROR] -> [Help 1]
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute 
goal org.apache.maven.plugins:maven-compiler-plugin:3.3:compile 
(default-compile) on project cas-overlay: Compilation failure


Thank you very much


El domingo, 1 de abril de 2018, 23:46:07 (UTC+2), Manfredo Hopp escribió:
>
> See trusted authentication.
> Local cas server should receive translated remote id entity through valve 
> or other mechanism. 
>
>
> El domingo, 1 de abril de 2018, JON JON  
> escribió:
>
>> Hi
>>
>> Is it possible to delegate authentication to a custom remote identity 
>> provider?
>>
>> This does not speak CAS, SAML, OAuth or OpenId Connect. It has its own 
>> SSO mechanism. End users use web browser to interact.
>>
>> Our identity provider has its own authentication mechanism, based on 
>> http, over j2ee, for users registered in a database.
>> It can return a token with the user's profile (authentication mechanism, 
>> identity, context, and authorization attributes).
>>
>> Now we need to delegate CAS authentication to this identity provider. Do 
>> you think it is possible with any of the mechanisms provided by CAS?
>>
>> The ultimate goal is for CAS to be a SAML identity provider based on the 
>> identity information provided by our identity provider.
>>
>> Thanks in advance
>>
>> Jon
>>
>> -- 
>> - Website: https://apereo.github.io/cas
>> - Gitter Chatroom: https://gitter.im/apereo/cas
>> - List Guidelines: https://goo.gl/1VRrw7
>> - Contributions: https://goo.gl/mh7qDG
>> --- 
>> You received this message because you are subscribed to the Google Groups 
>> "CAS Community" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to cas-user+u...@apereo.org .
>> To view this discussion on the web visit 
>> https://groups.google.com/a/apereo.org/d/msgid/cas-user/9289aac5-4ab1-43a0-9a72-b6d31e2e67e3%40apereo.org
>>  
>> 
>> .
>>
>

-- 
- Website: https://apereo.github.io/cas
- Gitter Chatroom: https://gitter.im/apereo/cas
- List Guidelines: https://goo.gl/1VRrw7
- Contributions: https://goo.gl/mh7qDG
--- 
You received this message because you are subscribed to the Google Groups "CAS 
Community" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cas-user+unsubscr...@apereo.org.
To view this discussion on the web visit 
https://groups.google.com/a/apereo.org/d/msgid/cas-user/a64d99c2-0365-4860-a97a-6e68b5efa218%40apereo.org.