123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- import {addErrorMessage, addSuccessMessage} from 'sentry/actionCreators/indicator';
- import {Button} from 'sentry/components/button';
- import LoadingError from 'sentry/components/loadingError';
- import LoadingIndicator from 'sentry/components/loadingIndicator';
- import {t} from 'sentry/locale';
- import {useApiQuery} from 'sentry/utils/queryClient';
- import useApi from 'sentry/utils/useApi';
- type Data = {
- mailFrom: string;
- mailHost: string;
- mailListNamespace: string;
- mailPassword: string;
- mailPort: string;
- mailUseSsl: string;
- mailUseTls: string;
- mailUsername: string;
- testMailEmail: string;
- };
- export default function AdminMail() {
- const {data, isPending, isError, refetch} = useApiQuery<Data>(['/internal/mail/'], {
- staleTime: 0,
- });
- const api = useApi({persistInFlight: true});
- if (isPending) {
- return <LoadingIndicator />;
- }
- if (isError) {
- return <LoadingError onRetry={refetch} />;
- }
- const {
- testMailEmail,
- mailHost,
- mailPassword,
- mailUsername,
- mailPort,
- mailUseTls,
- mailUseSsl,
- mailFrom,
- mailListNamespace,
- } = data;
- const sendTestEmail = async () => {
- try {
- await api.requestPromise('/internal/mail/', {method: 'POST'});
- addSuccessMessage(t('A test email has been sent to %s', testMailEmail));
- } catch (error) {
- addErrorMessage(
- error.responseJSON
- ? error.responseJSON.error
- : t('Unable to send test email. Check your server logs')
- );
- }
- };
- return (
- <div>
- <h3>{t('SMTP Settings')}</h3>
- <dl className="vars">
- <dt>{t('From Address')}</dt>
- <dd>
- <pre className="val">{mailFrom}</pre>
- </dd>
- <dt>{t('Host')}</dt>
- <dd>
- <pre className="val">
- {mailHost}:{mailPort}
- </pre>
- </dd>
- <dt>{t('Username')}</dt>
- <dd>
- <pre className="val">{mailUsername || <em>{t('not set')}</em>}</pre>
- </dd>
- <dt>{t('Password')}</dt>
- <dd>
- <pre className="val">{mailPassword ? '********' : <em>{t('not set')}</em>}</pre>
- </dd>
- <dt>{t('STARTTLS?')}</dt>
- <dd>
- <pre className="val">{mailUseTls ? t('Yes') : t('No')}</pre>
- </dd>
- <dt>{t('SSL?')}</dt>
- <dd>
- <pre className="val">{mailUseSsl ? t('Yes') : t('No')}</pre>
- </dd>
- <dt>{t('Mailing List Namespace')}</dt>
- <dd>
- <pre className="val">{mailListNamespace}</pre>
- </dd>
- </dl>
- <h3>{t('Test Settings')}</h3>
- <p>
- {t(
- "Send an email to your account's email address to confirm that everything is configured correctly."
- )}
- </p>
- <Button onClick={sendTestEmail}>
- {t('Send a test email to %s', testMailEmail)}
- </Button>
- </div>
- );
- }
|