cancel
Showing results for 
Search instead for 
Did you mean: 

Site Invitation eMail Link doesn't work.

michaelp
Confirmed Champ
Confirmed Champ
Hello everybody,

So I managed ALfresco to send eMail Notifications to join a Site. The eMail is sent, but the link to accept the invitation is broken.
First the link was

http://127.0.0.1:8080/share/….. 


so I changed in the alfresco-global.properties

share.host=mycompany.at


Now the link looks like
http://mycompany.at:8080/share/….. 
. Problem is we are using a proxy to redirect to share so with the additionl port the link wont work, copying the link and manually deleting ":8080" works. The link should be
http://mycompany.at/share/….. 
WITHOUT
:8080
.

Deleting the port in the properties wont work because then it would be Null.

Any suggestions where I can change the link builder to delet the code where it will input the port?

I know there are many suggestions for this problem but none of them works. Some says I should hardcode the url, where to do this if nothing other works?

Sincerely, Michael


EDIT: solved the problem. Used https and didn't set port to 443. So using
https
I need to use
port 443
, in my case.
3 REPLIES 3

jpotts
World-Class Innovator
World-Class Innovator
Have you tried changing share.port to 80?

Jeff

Hello Jeff,

Yes I tried changing the port to 80 but somehow then the link is
http://someco.at:80/share…..
which also doesnt work (Alfresco One 4.2.1).

I would change the file where the link is created to delet the part where it wants so input the port, any ideas or better suggestions?

Thank you in advance,
Michel

jpotts
World-Class Innovator
World-Class Innovator
I don't understand why port 80 doesn't work. That's the default HTTP port. So it is equivalent to http://someco.at. Most browsers will simply drop the ":80" when they see it.

Jeff