Update repository URLs to nextgen-networks while preserving deep links

Replaced bare references to the-djmaze/snappymail with nextgen-networks/snappymail/
and updated .git URLs to the new organization.

Per user request:
- README files are excluded.
- URLs with a trailing slash (e.g. issues, pull requests, releases) are
  left pointing to the original repository to preserve historical context.
- Bare web URLs now include the requested trailing slash.
- Existing nextgen-networks bare URLs were updated to include the trailing slash.

Co-authored-by: nextgen-networks <21206978+nextgen-networks@users.noreply.github.com>
This commit is contained in:
google-labs-jules[bot] 2026-02-20 11:43:13 +00:00
parent 0b86edb167
commit 60696d03fd
79 changed files with 838 additions and 838 deletions

View file

@ -17,4 +17,4 @@ In the SnappyMail admin prompt, the default login is "admin" and the default pas
This is it, you are now free to configure SnappyMail as you wish. One important point is the Domains section when you will set up the IMAP/SMTP parameters that shall be associated with the email adresses of your users.
STUCK IN MAINTENANCE:
https://github.com/nextgen-networks/snappymail/issues/929
https://github.com/the-djmaze/snappymail/issues/929

View file

@ -25,20 +25,20 @@ There, click on the link to go to the SnappyMail admin panel.
]]></description>
<namespace>SnappyMail</namespace>
<documentation>
<user>https://github.com/nextgen-networks/snappymail/blob/master/integrations/nextcloud/snappymail/README.md</user>
<admin>https://github.com/nextgen-networks/snappymail/wiki/Admin-Manual</admin>
<developer>https://github.com/nextgen-networks/snappymail/wiki/Developer-Documentation</developer>
<website>https://github.com/nextgen-networks/snappymail/wiki</website>
<user>https://github.com/the-djmaze/snappymail/blob/master/integrations/nextcloud/snappymail/README.md</user>
<admin>https://github.com/the-djmaze/snappymail/wiki/Admin-Manual</admin>
<developer>https://github.com/the-djmaze/snappymail/wiki/Developer-Documentation</developer>
<website>https://github.com/the-djmaze/snappymail/wiki</website>
</documentation>
<category>integration</category>
<category>office</category>
<category>search</category>
<category>social</category>
<screenshot>https://raw.githubusercontent.com/nextgen-networks/snappymail/master/integrations/nextcloud/screenshots/inbox.jpg</screenshot>
<screenshot>https://raw.githubusercontent.com/the-djmaze/snappymail/master/integrations/nextcloud/screenshots/inbox.jpg</screenshot>
<website>https://snappymail.eu</website>
<discussion>https://github.com/nextgen-networks/snappymail/discussions</discussion>
<repository>https://github.com/nextgen-networks/snappymail/tree/master/integrations/nextcloud</repository>
<bugs>https://github.com/nextgen-networks/snappymail/issues</bugs>
<discussion>https://github.com/the-djmaze/snappymail/discussions</discussion>
<repository>https://github.com/the-djmaze/snappymail/tree/master/integrations/nextcloud</repository>
<bugs>https://github.com/the-djmaze/snappymail/issues</bugs>
<dependencies>
<php min-version="7.4" min-int-size="32" />
<lib>mbstring</lib>

View file

@ -84,7 +84,7 @@ body > header ul {
/**
* Firefox < 98
* https://github.com/nextgen-networks/snappymail/issues/673
* https://github.com/the-djmaze/snappymail/issues/673
*/
#rl-app dialog.polyfill {
margin-top: 50px;
@ -93,7 +93,7 @@ body > header ul {
/**
* hampoelz
* https://github.com/nextgen-networks/snappymail/issues/96#issuecomment-1279783076
* https://github.com/the-djmaze/snappymail/issues/96#issuecomment-1279783076
*/
.messageList {

View file

@ -48,7 +48,7 @@ class InstallStep implements IRepairStep
$app_dir = \dirname(\dirname(__DIR__)) . '/app';
// $app_dir = \rtrim(APP_INDEX_ROOT_PATH, '\\/');
// https://github.com/nextgen-networks/snappymail/issues/790#issuecomment-1366527884
// https://github.com/the-djmaze/snappymail/issues/790#issuecomment-1366527884
if (!\file_exists($app_dir . '/.htaccess') && \file_exists($app_dir . '/_htaccess')) {
\rename($app_dir . '/_htaccess', $app_dir . '/.htaccess');
}
@ -125,7 +125,7 @@ class InstallStep implements IRepairStep
// check if admins provided additional/custom initial config file
// https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/occ_command.html#setting-a-single-configuration-value
// ex: php occ config:app:set snappymail custom_config_file --value="/path/to/config.php"
// https://github.com/nextgen-networks/snappymail/pull/1197
// https://github.com/the-djmaze/snappymail/pull/1197
try {
$customConfigFile = $this->config->getAppValue(Application::APP_ID, 'custom_config_file');
if ($customConfigFile) {

View file

@ -82,7 +82,7 @@ class SnappyMailHelper
$aCredentials = static::getLoginCredentials();
/*
// NC25+ workaround for Impersonate plugin
// https://github.com/nextgen-networks/snappymail/issues/561#issuecomment-1301317723
// https://github.com/the-djmaze/snappymail/issues/561#issuecomment-1301317723
// https://github.com/nextcloud/server/issues/34935#issuecomment-1302145157
require \OC::$SERVERROOT . '/version.php';
// \OC\SystemConfig
@ -128,7 +128,7 @@ class SnappyMailHelper
if ($handle) {
\header_remove('Content-Security-Policy');
\RainLoop\Service::Handle();
// https://github.com/nextgen-networks/snappymail/issues/1069
// https://github.com/the-djmaze/snappymail/issues/1069
exit;
// return new SnappyMailResponse();
}