diff --git a/scripts/publish.sh b/scripts/publish.sh index b3ac0591..822e5bf2 100755 --- a/scripts/publish.sh +++ b/scripts/publish.sh @@ -2,7 +2,10 @@ # Build and publish release to production server # Remote Server -REMOTE=revolt-de-nrb-1 +if [ -z "$REMOTE" ]; then + echo "Please set REMOTE!" + exit +fi # Remote Directory REMOTE_DIR=/root/revite diff --git a/src/pages/login/forms/MailProvider.tsx b/src/pages/login/forms/MailProvider.tsx index ac384ebd..d340b31f 100644 --- a/src/pages/login/forms/MailProvider.tsx +++ b/src/pages/login/forms/MailProvider.tsx @@ -1,7 +1,7 @@ import styles from "../Login.module.scss"; import { Text } from "preact-i18n"; -import { Button } from "@revoltchat/ui"; +import { Button, Tip } from "@revoltchat/ui"; interface Props { email?: string; @@ -115,6 +115,15 @@ export function MailProvider({ email }: Props) { /> + {provider[0] === "iCloud Mail" && ( + + + iCloud users may not receive any emails due to a block + by Proofpoint. Please use a different email provider if + you do not receive anything. + + + )} ); }