The repositories moved off LINUXexpert-org. The old URLs redirect, so nothing was broken, but a redirect is not a correct address to publish. The SOURCE_URL defaults matter most: the AGPL asks whoever runs a modified version to offer that version's source, and the sign-in page and About screen show this link. It is in four places that have to agree -- the compose file, .env.example, the server default and the web fallback. The rest is documentation and issue links.
9 lines
375 B
TypeScript
9 lines
375 B
TypeScript
/**
|
|
* Where to point someone who wants this instance's source.
|
|
*
|
|
* The AGPL asks whoever runs a modified version to offer *that* version's
|
|
* source. The server says where its own lives, via SOURCE_URL; this is only the
|
|
* fallback for when it has not been asked yet, or has nothing to say.
|
|
*/
|
|
export const DEFAULT_SOURCE_URL = "https://github.com/Coffey-Labs/ihasmail";
|