-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (77 loc) · 3.8 KB
/
Copy pathindex.html
File metadata and controls
82 lines (77 loc) · 3.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noindex">
<title>Inbox by TrueDialog — Development Environment (ctot.dev)</title>
<style>
:root {
--bg: #ffffff; --fg: #1a1d21; --muted: #5b6470;
--card: #f6f8fa; --border: #e3e8ee; --accent: #0b6cff;
}
@media (prefers-color-scheme: dark) {
:root {
--bg: #0f1216; --fg: #e6e9ee; --muted: #9aa4b2;
--card: #161b22; --border: #262d36; --accent: #4d9bff;
}
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
margin: 0; background: var(--bg); color: var(--fg);
font: 16px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
}
.wrap { max-width: 720px; margin: 0 auto; padding: 56px 24px 72px; }
header { border-bottom: 1px solid var(--border); padding-bottom: 24px; margin-bottom: 8px; }
.eyebrow { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin: 0 0 8px; }
h1 { font-size: 28px; line-height: 1.25; margin: 0 0 10px; font-weight: 650; }
.lede { font-size: 17px; color: var(--muted); margin: 0; }
section { margin-top: 32px; }
h2 { font-size: 15px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin: 0 0 10px; font-weight: 600; }
p { margin: 0 0 12px; }
ul { margin: 0; padding-left: 20px; }
li { margin: 6px 0; }
.card { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 18px 20px; }
code { background: var(--card); border: 1px solid var(--border); border-radius: 5px; padding: 1px 6px; font-size: .9em; }
a { color: var(--accent); }
footer { margin-top: 48px; padding-top: 20px; border-top: 1px solid var(--border); color: var(--muted); font-size: 14px; }
</style>
</head>
<body>
<div class="wrap">
<header>
<p class="eyebrow">Inbox by TrueDialog</p>
<h1>Development & testing environment</h1>
<p class="lede"><code>ctot.dev</code> is the development environment for Inbox by TrueDialog — a programmatic email service that lets software agents and their operators exchange email through a governed API.</p>
</header>
<section>
<h2>What this domain sends</h2>
<p><strong>Transactional email only</strong> — replies, notifications, and system messages exchanged between our agents, our team, and a small, known set of correspondents. No marketing, no bulk, no unsolicited mail.</p>
</section>
<section>
<h2>Recipients</h2>
<p>Known correspondents and transactional traffic only. We do not use purchased or rented lists. Sending is limited to development and integration testing, at low volume (on the order of tens of messages per day).</p>
</section>
<section>
<h2>Authentication & deliverability</h2>
<div class="card">
<ul>
<li>Mail from <code>ctot.dev</code> is authenticated with <strong>SPF, DKIM, and DMARC</strong>.</li>
<li>Bounces and complaints are delivered to dedicated Amazon SNS topics and processed automatically.</li>
<li>Bounced and complained addresses are added to a <strong>suppression list and are not retried</strong>; the account-level suppression list is honored.</li>
<li>Sending rates are monitored with CloudWatch alarms.</li>
</ul>
</div>
</section>
<section>
<h2>Compliance & opt-out</h2>
<p>We comply with the AWS Service Terms and Acceptable Use Policy and honor opt-out requests. To opt out, or to reach the operators of this domain, reply to any message sent from <code>ctot.dev</code>.</p>
</section>
<footer>
Operated by the Inbox by TrueDialog team. This is a development environment; the production service is TrueDialog.
</footer>
</div>
</body>
</html>