cancel
Showing results for 
Search instead for 
Did you mean: 

Email invitation Accept Link

carnold
Champ on-the-rise
Champ on-the-rise
Community 4.2c on sles11. I finally got the email invites working. However, when the invite is received, it contains a link to accept the invite. This link includes port 8080 in it. We have alfresco sitting behind an apache proxy and do not use port 8080 to access alfresco or share. I tried changing this port 8080 in alfresco-gobal.properties (the one in ../shared/classes/) by commenting out both the alfresco context port and the share context port; link in invite still has port 8080. So how do i remove 8080 in the invite link?
4 REPLIES 4

sujaypillai
Confirmed Champ
Confirmed Champ
It should be changed in the Email template referenced, most probably under Company Home > Data Dictionary > Email Templates > invite > invite-email.html.ftl if you don't have a custom template.

Thank you! This one also helped me locate another change i needed to make.

michaelc
Champ on-the-rise
Champ on-the-rise
If you look in your alfresco-global.properties
you should find the following references. if you change the port it should change the invite, I think it's the share port. ( it's been a while )
alfresco.context=alfresco
alfresco.host=your.com
alfresco.port=8080
alfresco.protocol=http

share.context=share
share.host=your.com
share.port=8080
share.protocol=http

carnold
Champ on-the-rise
Champ on-the-rise
Yea, this is the file i commented out and it kept the 8080. So, i uncommented and made it 80; this was exactly what i needed. Thank you