diff --git a/tools/typos/mktransport b/tools/typos/mktransport
index 1b2fff57d505bafc99bad9fba0a051b5ceac23a9..d0d7c9779faa1112ee8e77452f6b40190286c874 100755
--- a/tools/typos/mktransport
+++ b/tools/typos/mktransport
@@ -16,21 +16,21 @@ echo "# domains that are registered by the owner of the domain they are a typo f
 for file in $owned; do
    echo "# ${file%-owned} owned domains"
    for domain in `cat lists/$file`; do
-      echo "$domain	error: This domain exists, but is probably a typo. Contact https://support.riseup.net/ if this is in error."
-      echo ".$domain	error: This domain exists, but is probably a typo. Contact https://support.riseup.net/ if this is in error."
+      echo "$domain	error: This domain exists, but is probably a typo. Contact https://support.riseup.net if this is in error."
+      echo ".$domain	error: This domain exists, but is probably a typo. Contact https://support.riseup.net if this is in error."
    done
 done
 
 echo
 echo "# domains that are registered by a squatter/random"
 for domain in `cat lists/$registered`; do
-      echo "$domain	error: This domain exists, but is probably a typo. Contact https://support.riseup.net/ if this is in error."
-      echo ".$domain	error: This domain exists, but is probably a typo. Contact https://support.riseup.net/ if this is in error."
+      echo "$domain	error: This domain exists, but is probably a typo. Contact https://support.riseup.net if this is in error."
+      echo ".$domain	error: This domain exists, but is probably a typo. Contact https://support.riseup.net if this is in error."
 done
 
 echo
 echo "# domains that aren't registered"
 for domain in `cat lists/$not`; do
-      echo "$domain	error: This domain isn't resolving, but is probably a typo anyway. Contact https://support.riseup.net/ if this is in error."
-      echo ".$domain	error: This domain isn't resolving, but is probably a typo anyway. Contact https://support.riseup.net/ if this is in error."
+      echo "$domain	error: This domain isn't resolving, but is probably a typo anyway. Contact https://support.riseup.net if this is in error."
+      echo ".$domain	error: This domain isn't resolving, but is probably a typo anyway. Contact https://support.riseup.net if this is in error."
 done