320 lines
410 KiB
HTML
320 lines
410 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>graphify - graphify-out/graph.html</title>
|
|
<script src="https://unpkg.com/vis-network@9.1.6/standalone/umd/vis-network.min.js"
|
|
integrity="sha384-Ux6phic9PEHJ38YtrijhkzyJ8yQlH8i/+buBR8s3mAZOJrP1gwyvAcIYl3GWtpX1"
|
|
crossorigin="anonymous"></script>
|
|
<style>
|
|
* { box-sizing: border-box; margin: 0; padding: 0; }
|
|
body { background: #0f0f1a; color: #e0e0e0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; display: flex; height: 100vh; overflow: hidden; }
|
|
#graph { flex: 1; }
|
|
#sidebar { width: 280px; background: #1a1a2e; border-left: 1px solid #2a2a4e; display: flex; flex-direction: column; overflow: hidden; }
|
|
#search-wrap { padding: 12px; border-bottom: 1px solid #2a2a4e; }
|
|
#search { width: 100%; background: #0f0f1a; border: 1px solid #3a3a5e; color: #e0e0e0; padding: 7px 10px; border-radius: 6px; font-size: 13px; outline: none; }
|
|
#search:focus { border-color: #4E79A7; }
|
|
#search-results { max-height: 140px; overflow-y: auto; padding: 4px 12px; border-bottom: 1px solid #2a2a4e; display: none; }
|
|
.search-item { padding: 4px 6px; cursor: pointer; border-radius: 4px; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
|
|
.search-item:hover { background: #2a2a4e; }
|
|
#info-panel { padding: 14px; border-bottom: 1px solid #2a2a4e; min-height: 140px; }
|
|
#info-panel h3 { font-size: 13px; color: #aaa; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
|
|
#info-content { font-size: 13px; color: #ccc; line-height: 1.6; }
|
|
#info-content .field { margin-bottom: 5px; }
|
|
#info-content .field b { color: #e0e0e0; }
|
|
#info-content .empty { color: #555; font-style: italic; }
|
|
.neighbor-link { display: block; padding: 2px 6px; margin: 2px 0; border-radius: 3px; cursor: pointer; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; border-left: 3px solid #333; }
|
|
.neighbor-link:hover { background: #2a2a4e; }
|
|
#neighbors-list { max-height: 160px; overflow-y: auto; margin-top: 4px; }
|
|
#legend-wrap { flex: 1; overflow-y: auto; padding: 12px; }
|
|
#legend-wrap h3 { font-size: 13px; color: #aaa; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
|
|
.legend-item { display: flex; align-items: center; gap: 8px; padding: 4px 0; cursor: pointer; border-radius: 4px; font-size: 12px; }
|
|
.legend-item:hover { background: #2a2a4e; padding-left: 4px; }
|
|
.legend-item.dimmed { opacity: 0.35; }
|
|
.legend-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
|
|
.legend-label { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
.legend-count { color: #666; font-size: 11px; }
|
|
#stats { padding: 10px 14px; border-top: 1px solid #2a2a4e; font-size: 11px; color: #555; }
|
|
#legend-controls { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; padding: 4px 0; }
|
|
#legend-controls label { display: flex; align-items: center; gap: 6px; cursor: pointer; font-size: 12px; color: #aaa; user-select: none; }
|
|
#legend-controls label:hover { color: #e0e0e0; }
|
|
.legend-cb, #select-all-cb { appearance: none; -webkit-appearance: none; width: 14px; height: 14px; border: 1.5px solid #3a3a5e; border-radius: 3px; background: #0f0f1a; cursor: pointer; position: relative; flex-shrink: 0; }
|
|
.legend-cb:checked, #select-all-cb:checked { background: #4E79A7; border-color: #4E79A7; }
|
|
.legend-cb:checked::after, #select-all-cb:checked::after { content: ''; position: absolute; left: 3.5px; top: 1px; width: 4px; height: 7px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
|
|
#select-all-cb:indeterminate { background: #4E79A7; border-color: #4E79A7; }
|
|
#select-all-cb:indeterminate::after { content: ''; position: absolute; left: 2px; top: 5px; width: 8px; height: 2px; background: #fff; border: none; transform: none; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="graph"></div>
|
|
<div id="sidebar">
|
|
<div id="search-wrap">
|
|
<input id="search" type="text" placeholder="Search nodes..." autocomplete="off">
|
|
<div id="search-results"></div>
|
|
</div>
|
|
<div id="info-panel">
|
|
<h3>Node Info</h3>
|
|
<div id="info-content"><span class="empty">Click a node to inspect it</span></div>
|
|
</div>
|
|
<div id="legend-wrap">
|
|
<h3>Communities</h3>
|
|
<div id="legend-controls">
|
|
<label><input type="checkbox" id="select-all-cb" checked onchange="toggleAllCommunities(!this.checked)">Select All</label>
|
|
</div>
|
|
<div id="legend"></div>
|
|
</div>
|
|
<div id="stats">426 nodes · 861 edges · 39 communities</div>
|
|
</div>
|
|
<script>
|
|
const RAW_NODES = [{"id": "app", "label": "app.py", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 27.0, "font": {"size": 12, "color": "#ffffff"}, "title": "app.py", "community": 3, "community_name": "App Bootstrap & Domain Models", "source_file": "app.py", "file_type": "code", "degree": 21}, {"id": "app_smtpserverapp", "label": "SMTPServerApp", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 25.4, "font": {"size": 12, "color": "#ffffff"}, "title": "SMTPServerApp", "community": 9, "community_name": "Unified App Entry Point", "source_file": "app.py", "file_type": "code", "degree": 19}, {"id": "app_smtpserverapp_init", "label": ".__init__()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 9, "community_name": "Unified App Entry Point", "source_file": "app.py", "file_type": "code", "degree": 2}, {"id": "app_smtpserverapp_get_absolute_database_url", "label": "._get_absolute_database_url()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._get_absolute_database_url()", "community": 9, "community_name": "Unified App Entry Point", "source_file": "app.py", "file_type": "code", "degree": 3}, {"id": "app_smtpserverapp_create_flask_app", "label": ".create_flask_app()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".create_flask_app()", "community": 9, "community_name": "Unified App Entry Point", "source_file": "app.py", "file_type": "code", "degree": 5}, {"id": "app_smtpserverapp_init_sample_data", "label": ".init_sample_data()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 16.5, "font": {"size": 12, "color": "#ffffff"}, "title": ".init_sample_data()", "community": 3, "community_name": "App Bootstrap & Domain Models", "source_file": "app.py", "file_type": "code", "degree": 8}, {"id": "app_smtpserverapp_start_smtp_server", "label": ".start_smtp_server()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".start_smtp_server()", "community": 9, "community_name": "Unified App Entry Point", "source_file": "app.py", "file_type": "code", "degree": 5}, {"id": "app_smtpserverapp_run_smtp_server", "label": ".run_smtp_server()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".run_smtp_server()", "community": 9, "community_name": "Unified App Entry Point", "source_file": "app.py", "file_type": "code", "degree": 2}, {"id": "app_smtpserverapp_run", "label": ".run()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".run()", "community": 9, "community_name": "Unified App Entry Point", "source_file": "app.py", "file_type": "code", "degree": 5}, {"id": "app_smtpserverapp_check_health", "label": ".check_health()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".check_health()", "community": 9, "community_name": "Unified App Entry Point", "source_file": "app.py", "file_type": "code", "degree": 3}, {"id": "app_main", "label": "main()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "main()", "community": 9, "community_name": "Unified App Entry Point", "source_file": "app.py", "file_type": "code", "degree": 4}, {"id": "app_rationale_45", "label": "Unified SMTP Server and Web Frontend Application", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Unified SMTP Server and Web Frontend Application", "community": 9, "community_name": "Unified App Entry Point", "source_file": "app.py", "file_type": "rationale", "degree": 1}, {"id": "app_rationale_57", "label": "Convert relative database URL to absolute path for Flask-SQLAlchemy", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Convert relative database URL to absolute path for Flask-SQLAlchemy", "community": 9, "community_name": "Unified App Entry Point", "source_file": "app.py", "file_type": "rationale", "degree": 1}, {"id": "app_rationale_75", "label": "Create and configure the Flask application", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Create and configure the Flask application", "community": 9, "community_name": "Unified App Entry Point", "source_file": "app.py", "file_type": "rationale", "degree": 1}, {"id": "app_rationale_154", "label": "Initialize the database with sample data for testing", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Initialize the database with sample data for testing", "community": 3, "community_name": "App Bootstrap & Domain Models", "source_file": "app.py", "file_type": "rationale", "degree": 1}, {"id": "app_rationale_229", "label": "Start the SMTP server in async context", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Start the SMTP server in async context", "community": 9, "community_name": "Unified App Entry Point", "source_file": "app.py", "file_type": "rationale", "degree": 1}, {"id": "app_rationale_268", "label": "Run the unified application", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Run the unified application", "community": 9, "community_name": "Unified App Entry Point", "source_file": "app.py", "file_type": "rationale", "degree": 1}, {"id": "app_rationale_320", "label": "Check the health of all services", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Check the health of all services", "community": 9, "community_name": "Unified App Entry Point", "source_file": "app.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_init", "label": "email_server/__init__.py", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "email_server/__init__.py", "community": 34, "community_name": "email_server Package Init", "source_file": "email_server/__init__.py", "file_type": "code", "degree": 1}, {"id": "email_server_init_rationale_1", "label": "PyMTA Server email package", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "PyMTA Server email package", "community": 34, "community_name": "email_server Package Init", "source_file": "email_server/__init__.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_auth", "label": "auth.py", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 23.8, "font": {"size": 12, "color": "#ffffff"}, "title": "auth.py", "community": 6, "community_name": "Sender/IP Authentication Logic", "source_file": "email_server/auth.py", "file_type": "code", "degree": 17}, {"id": "email_server_auth_enhancedauthenticator", "label": "EnhancedAuthenticator", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 21.4, "font": {"size": 12, "color": "#ffffff"}, "title": "EnhancedAuthenticator", "community": 20, "community_name": "Combined Authenticators", "source_file": "email_server/auth.py", "file_type": "code", "degree": 14}, {"id": "email_server_auth_enhancedauthenticator_call", "label": ".__call__()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".__call__()", "community": 6, "community_name": "Sender/IP Authentication Logic", "source_file": "email_server/auth.py", "file_type": "code", "degree": 4}, {"id": "email_server_auth_enhancedipauthenticator", "label": "EnhancedIPAuthenticator", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 22.2, "font": {"size": 12, "color": "#ffffff"}, "title": "EnhancedIPAuthenticator", "community": 20, "community_name": "Combined Authenticators", "source_file": "email_server/auth.py", "file_type": "code", "degree": 15}, {"id": "email_server_auth_enhancedipauthenticator_can_authenticate_for_domain", "label": ".can_authenticate_for_domain()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".can_authenticate_for_domain()", "community": 6, "community_name": "Sender/IP Authentication Logic", "source_file": "email_server/auth.py", "file_type": "code", "degree": 4}, {"id": "email_server_auth_validate_sender_authorization", "label": "validate_sender_authorization()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "validate_sender_authorization()", "community": 6, "community_name": "Sender/IP Authentication Logic", "source_file": "email_server/auth.py", "file_type": "code", "degree": 7}, {"id": "email_server_auth_get_authenticated_domain_id", "label": "get_authenticated_domain_id()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "get_authenticated_domain_id()", "community": 6, "community_name": "Sender/IP Authentication Logic", "source_file": "email_server/auth.py", "file_type": "code", "degree": 3}, {"id": "email_server_auth_rationale_1", "label": "Enhanced authentication modules for the SMTP server using ESRV schema. Security\u2026", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Enhanced authentication modules for the SMTP server using ESRV schema. Security\u2026", "community": 6, "community_name": "Sender/IP Authentication Logic", "source_file": "email_server/auth.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_auth_rationale_23", "label": "Enhanced username/password authenticator with sender validation. Features: -\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Enhanced username/password authenticator with sender validation. Features: -\u2026", "community": 20, "community_name": "Combined Authenticators", "source_file": "email_server/auth.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_auth_rationale_91", "label": "Enhanced IP-based authenticator with domain-specific authorization. Features: -\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Enhanced IP-based authenticator with domain-specific authorization. Features: -\u2026", "community": 20, "community_name": "Combined Authenticators", "source_file": "email_server/auth.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_auth_rationale_101", "label": "Check if IP can authenticate for a specific domain. Args: ip_address: Client IP\u2026", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Check if IP can authenticate for a specific domain. Args: ip_address: Client IP\u2026", "community": 6, "community_name": "Sender/IP Authentication Logic", "source_file": "email_server/auth.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_auth_rationale_122", "label": "Validate if the authenticated entity can send as the specified from address.\u2026", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Validate if the authenticated entity can send as the specified from address.\u2026", "community": 6, "community_name": "Sender/IP Authentication Logic", "source_file": "email_server/auth.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_auth_rationale_196", "label": "Get the domain ID for the authenticated entity. Args: session: SMTP session\u2026", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Get the domain ID for the authenticated entity. Args: session: SMTP session\u2026", "community": 6, "community_name": "Sender/IP Authentication Logic", "source_file": "email_server/auth.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_dkim_manager", "label": "dkim_manager.py", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 23.0, "font": {"size": 12, "color": "#ffffff"}, "title": "dkim_manager.py", "community": 19, "community_name": "DKIM/Custom Header Models", "source_file": "email_server/dkim_manager.py", "file_type": "code", "degree": 16}, {"id": "email_server_dkim_manager_dkimmanager", "label": "DKIMManager", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 37.6, "font": {"size": 12, "color": "#ffffff"}, "title": "DKIMManager", "community": 4, "community_name": "DKIM Key Manager", "source_file": "email_server/dkim_manager.py", "file_type": "code", "degree": 34}, {"id": "email_server_dkim_manager_dkimmanager_init", "label": ".__init__()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 4, "community_name": "DKIM Key Manager", "source_file": "email_server/dkim_manager.py", "file_type": "code", "degree": 3}, {"id": "email_server_dkim_manager_dkimmanager_generate_random_selector", "label": "._generate_random_selector()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._generate_random_selector()", "community": 4, "community_name": "DKIM Key Manager", "source_file": "email_server/dkim_manager.py", "file_type": "code", "degree": 3}, {"id": "email_server_dkim_manager_dkimmanager_generate_dkim_keypair", "label": ".generate_dkim_keypair()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".generate_dkim_keypair()", "community": 4, "community_name": "DKIM Key Manager", "source_file": "email_server/dkim_manager.py", "file_type": "code", "degree": 5}, {"id": "email_server_dkim_manager_dkimmanager_get_active_dkim_key", "label": ".get_active_dkim_key()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_active_dkim_key()", "community": 4, "community_name": "DKIM Key Manager", "source_file": "email_server/dkim_manager.py", "file_type": "code", "degree": 5}, {"id": "email_server_dkim_manager_dkimmanager_get_dkim_private_key", "label": ".get_dkim_private_key()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_dkim_private_key()", "community": 4, "community_name": "DKIM Key Manager", "source_file": "email_server/dkim_manager.py", "file_type": "code", "degree": 3}, {"id": "email_server_dkim_manager_dkimmanager_get_dkim_public_key_record", "label": ".get_dkim_public_key_record()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_dkim_public_key_record()", "community": 4, "community_name": "DKIM Key Manager", "source_file": "email_server/dkim_manager.py", "file_type": "code", "degree": 3}, {"id": "email_server_dkim_manager_dkimmanager_sign_email", "label": ".sign_email()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".sign_email()", "community": 4, "community_name": "DKIM Key Manager", "source_file": "email_server/dkim_manager.py", "file_type": "code", "degree": 3}, {"id": "email_server_dkim_manager_dkimmanager_list_dkim_keys", "label": ".list_dkim_keys()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".list_dkim_keys()", "community": 4, "community_name": "DKIM Key Manager", "source_file": "email_server/dkim_manager.py", "file_type": "code", "degree": 1}, {"id": "email_server_dkim_manager_dkimmanager_initialize_default_keys", "label": ".initialize_default_keys()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".initialize_default_keys()", "community": 4, "community_name": "DKIM Key Manager", "source_file": "email_server/dkim_manager.py", "file_type": "code", "degree": 3}, {"id": "email_server_dkim_manager_dkimmanager_get_active_custom_headers", "label": ".get_active_custom_headers()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_active_custom_headers()", "community": 4, "community_name": "DKIM Key Manager", "source_file": "email_server/dkim_manager.py", "file_type": "code", "degree": 2}, {"id": "email_server_dkim_manager_rationale_1", "label": "DKIM key management and email signing functionality.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "DKIM key management and email signing functionality.", "community": 19, "community_name": "DKIM/Custom Header Models", "source_file": "email_server/dkim_manager.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_dkim_manager_rationale_21", "label": "Manages DKIM keys and email signing.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Manages DKIM keys and email signing.", "community": 4, "community_name": "DKIM Key Manager", "source_file": "email_server/dkim_manager.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_dkim_manager_rationale_24", "label": "Initialize DKIMManager with a selector. If not provided, use random.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Initialize DKIMManager with a selector. If not provided, use random.", "community": 4, "community_name": "DKIM Key Manager", "source_file": "email_server/dkim_manager.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_dkim_manager_rationale_32", "label": "Generate a random DKIM selector name (8-12 chars).", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Generate a random DKIM selector name (8-12 chars).", "community": 4, "community_name": "DKIM Key Manager", "source_file": "email_server/dkim_manager.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_dkim_manager_rationale_36", "label": "Generate DKIM key pair for a domain, optionally with a custom selector. Args:\u2026", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Generate DKIM key pair for a domain, optionally with a custom selector. Args:\u2026", "community": 4, "community_name": "DKIM Key Manager", "source_file": "email_server/dkim_manager.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_dkim_manager_rationale_134", "label": "Get the active DKIM key for a domain (only one active per selector).", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Get the active DKIM key for a domain (only one active per selector).", "community": 4, "community_name": "DKIM Key Manager", "source_file": "email_server/dkim_manager.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_dkim_manager_rationale_149", "label": "Get DKIM private key for a domain.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Get DKIM private key for a domain.", "community": 4, "community_name": "DKIM Key Manager", "source_file": "email_server/dkim_manager.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_dkim_manager_rationale_156", "label": "Get DKIM public key DNS record for a domain (active key only).", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Get DKIM public key DNS record for a domain (active key only).", "community": 4, "community_name": "DKIM Key Manager", "source_file": "email_server/dkim_manager.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_dkim_manager_rationale_169", "label": "Sign email content with DKIM. Only add one DKIM header, after all modifications.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Sign email content with DKIM. Only add one DKIM header, after all modifications.", "community": 4, "community_name": "DKIM Key Manager", "source_file": "email_server/dkim_manager.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_dkim_manager_rationale_232", "label": "Initialize DKIM keys for existing domains that don't have them.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Initialize DKIM keys for existing domains that don't have them.", "community": 4, "community_name": "DKIM Key Manager", "source_file": "email_server/dkim_manager.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_dkim_manager_rationale_252", "label": "Get all active custom headers for a domain. Args: domain_name (str): The domain\u2026", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Get all active custom headers for a domain. Args: domain_name (str): The domain\u2026", "community": 4, "community_name": "DKIM Key Manager", "source_file": "email_server/dkim_manager.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_email_relay", "label": "email_relay.py", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 18.9, "font": {"size": 12, "color": "#ffffff"}, "title": "email_relay.py", "community": 7, "community_name": "Models Core & Logging Utils", "source_file": "email_server/email_relay.py", "file_type": "code", "degree": 11}, {"id": "email_server_email_relay_emailrelay", "label": "EmailRelay", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 23.8, "font": {"size": 12, "color": "#ffffff"}, "title": "EmailRelay", "community": 8, "community_name": "Email Relay Delivery", "source_file": "email_server/email_relay.py", "file_type": "code", "degree": 17}, {"id": "email_server_email_relay_emailrelay_init", "label": ".__init__()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 8, "community_name": "Email Relay Delivery", "source_file": "email_server/email_relay.py", "file_type": "code", "degree": 1}, {"id": "email_server_email_relay_emailrelay_modify_headers_for_recipients", "label": "._modify_headers_for_recipients()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "._modify_headers_for_recipients()", "community": 8, "community_name": "Email Relay Delivery", "source_file": "email_server/email_relay.py", "file_type": "code", "degree": 2}, {"id": "email_server_email_relay_emailrelay_prepare_email_for_recipient", "label": "._prepare_email_for_recipient()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "._prepare_email_for_recipient()", "community": 8, "community_name": "Email Relay Delivery", "source_file": "email_server/email_relay.py", "file_type": "code", "degree": 3}, {"id": "email_server_email_relay_emailrelay_relay_email_async", "label": ".relay_email_async()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".relay_email_async()", "community": 8, "community_name": "Email Relay Delivery", "source_file": "email_server/email_relay.py", "file_type": "code", "degree": 4}, {"id": "email_server_email_relay_emailrelay_relay_email", "label": ".relay_email()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".relay_email()", "community": 8, "community_name": "Email Relay Delivery", "source_file": "email_server/email_relay.py", "file_type": "code", "degree": 3}, {"id": "email_server_email_relay_emailrelay_log_email", "label": ".log_email()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".log_email()", "community": 8, "community_name": "Email Relay Delivery", "source_file": "email_server/email_relay.py", "file_type": "code", "degree": 5}, {"id": "email_server_email_relay_rationale_1", "label": "Email relay functionality for the SMTP server.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Email relay functionality for the SMTP server.", "community": 7, "community_name": "Models Core & Logging Utils", "source_file": "email_server/email_relay.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_email_relay_rationale_20", "label": "Handles relaying emails to recipient mail servers.", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Handles relaying emails to recipient mail servers.", "community": 8, "community_name": "Email Relay Delivery", "source_file": "email_server/email_relay.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_email_relay_rationale_30", "label": "Modify email headers to set To and Cc fields, preserving original structure for\u2026", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Modify email headers to set To and Cc fields, preserving original structure for\u2026", "community": 8, "community_name": "Email Relay Delivery", "source_file": "email_server/email_relay.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_email_relay_rationale_69", "label": "Prepare a copy of the email for a specific recipient without modifying original\u2026", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Prepare a copy of the email for a specific recipient without modifying original\u2026", "community": 8, "community_name": "Email Relay Delivery", "source_file": "email_server/email_relay.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_email_relay_rationale_111", "label": "Relay email to recipients' mail servers asynchronously with encryption.\u2026", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Relay email to recipients' mail servers asynchronously with encryption.\u2026", "community": 8, "community_name": "Email Relay Delivery", "source_file": "email_server/email_relay.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_email_relay_rationale_297", "label": "Synchronous wrapper for relay_email_async for compatibility.", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Synchronous wrapper for relay_email_async for compatibility.", "community": 8, "community_name": "Email Relay Delivery", "source_file": "email_server/email_relay.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_email_relay_rationale_301", "label": "Log email activity to database, including per-recipient results.", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Log email activity to database, including per-recipient results.", "community": 8, "community_name": "Email Relay Delivery", "source_file": "email_server/email_relay.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_models", "label": "models.py", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 40.0, "font": {"size": 12, "color": "#ffffff"}, "title": "models.py", "community": 7, "community_name": "Models Core & Logging Utils", "source_file": "email_server/models.py", "file_type": "code", "degree": 37}, {"id": "email_server_models_domain", "label": "Domain", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 26.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Domain", "community": 3, "community_name": "App Bootstrap & Domain Models", "source_file": "email_server/models.py", "file_type": "code", "degree": 20}, {"id": "base", "label": "Base", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 17.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Base", "community": 19, "community_name": "DKIM/Custom Header Models", "source_file": "", "file_type": "code", "degree": 9}, {"id": "email_server_models_domain_repr", "label": ".__repr__()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".__repr__()", "community": 3, "community_name": "App Bootstrap & Domain Models", "source_file": "email_server/models.py", "file_type": "code", "degree": 1}, {"id": "email_server_models_sender", "label": "Sender", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 23.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Sender", "community": 27, "community_name": "Sender Model", "source_file": "email_server/models.py", "file_type": "code", "degree": 17}, {"id": "email_server_models_sender_can_send_as", "label": ".can_send_as()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".can_send_as()", "community": 27, "community_name": "Sender Model", "source_file": "email_server/models.py", "file_type": "code", "degree": 2}, {"id": "email_server_models_sender_repr", "label": ".__repr__()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".__repr__()", "community": 27, "community_name": "Sender Model", "source_file": "email_server/models.py", "file_type": "code", "degree": 1}, {"id": "email_server_models_whitelistedip", "label": "WhitelistedIP", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 23.0, "font": {"size": 12, "color": "#ffffff"}, "title": "WhitelistedIP", "community": 3, "community_name": "App Bootstrap & Domain Models", "source_file": "email_server/models.py", "file_type": "code", "degree": 16}, {"id": "email_server_models_whitelistedip_can_send_for_domain", "label": ".can_send_for_domain()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".can_send_for_domain()", "community": 3, "community_name": "App Bootstrap & Domain Models", "source_file": "email_server/models.py", "file_type": "code", "degree": 2}, {"id": "email_server_models_whitelistedip_repr", "label": ".__repr__()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".__repr__()", "community": 3, "community_name": "App Bootstrap & Domain Models", "source_file": "email_server/models.py", "file_type": "code", "degree": 1}, {"id": "email_server_models_emaillog", "label": "EmailLog", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 26.2, "font": {"size": 12, "color": "#ffffff"}, "title": "EmailLog", "community": 8, "community_name": "Email Relay Delivery", "source_file": "email_server/models.py", "file_type": "code", "degree": 20}, {"id": "email_server_models_emaillog_repr", "label": ".__repr__()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".__repr__()", "community": 8, "community_name": "Email Relay Delivery", "source_file": "email_server/models.py", "file_type": "code", "degree": 1}, {"id": "email_server_models_emailrecipientlog", "label": "EmailRecipientLog", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 17.3, "font": {"size": 12, "color": "#ffffff"}, "title": "EmailRecipientLog", "community": 7, "community_name": "Models Core & Logging Utils", "source_file": "email_server/models.py", "file_type": "code", "degree": 9}, {"id": "email_server_models_emailrecipientlog_repr", "label": ".__repr__()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".__repr__()", "community": 7, "community_name": "Models Core & Logging Utils", "source_file": "email_server/models.py", "file_type": "code", "degree": 1}, {"id": "email_server_models_authlog", "label": "AuthLog", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 18.1, "font": {"size": 12, "color": "#ffffff"}, "title": "AuthLog", "community": 10, "community_name": "Dashboard & Auth Log Web UI", "source_file": "email_server/models.py", "file_type": "code", "degree": 10}, {"id": "email_server_models_authlog_repr", "label": ".__repr__()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".__repr__()", "community": 10, "community_name": "Dashboard & Auth Log Web UI", "source_file": "email_server/models.py", "file_type": "code", "degree": 1}, {"id": "email_server_models_dkimkey", "label": "DKIMKey", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 19.7, "font": {"size": 12, "color": "#ffffff"}, "title": "DKIMKey", "community": 19, "community_name": "DKIM/Custom Header Models", "source_file": "email_server/models.py", "file_type": "code", "degree": 12}, {"id": "email_server_models_dkimkey_repr", "label": ".__repr__()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".__repr__()", "community": 19, "community_name": "DKIM/Custom Header Models", "source_file": "email_server/models.py", "file_type": "code", "degree": 1}, {"id": "email_server_models_customheader", "label": "CustomHeader", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 17.3, "font": {"size": 12, "color": "#ffffff"}, "title": "CustomHeader", "community": 19, "community_name": "DKIM/Custom Header Models", "source_file": "email_server/models.py", "file_type": "code", "degree": 9}, {"id": "email_server_models_customheader_repr", "label": ".__repr__()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".__repr__()", "community": 19, "community_name": "DKIM/Custom Header Models", "source_file": "email_server/models.py", "file_type": "code", "degree": 1}, {"id": "email_server_models_emailattachment", "label": "EmailAttachment", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 20.5, "font": {"size": 12, "color": "#ffffff"}, "title": "EmailAttachment", "community": 5, "community_name": "SMTP Custom Protocol & Controllers", "source_file": "email_server/models.py", "file_type": "code", "degree": 13}, {"id": "email_server_models_emailattachment_repr", "label": ".__repr__()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".__repr__()", "community": 5, "community_name": "SMTP Custom Protocol & Controllers", "source_file": "email_server/models.py", "file_type": "code", "degree": 1}, {"id": "email_server_models_create_tables", "label": "create_tables()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 16.5, "font": {"size": 12, "color": "#ffffff"}, "title": "create_tables()", "community": 3, "community_name": "App Bootstrap & Domain Models", "source_file": "email_server/models.py", "file_type": "code", "degree": 8}, {"id": "email_server_models_hash_password", "label": "hash_password()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 17.3, "font": {"size": 12, "color": "#ffffff"}, "title": "hash_password()", "community": 13, "community_name": "Sender Management Web UI", "source_file": "email_server/models.py", "file_type": "code", "degree": 9}, {"id": "email_server_models_check_password", "label": "check_password()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "check_password()", "community": 6, "community_name": "Sender/IP Authentication Logic", "source_file": "email_server/models.py", "file_type": "code", "degree": 4}, {"id": "email_server_models_log_auth_attempt", "label": "log_auth_attempt()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "log_auth_attempt()", "community": 6, "community_name": "Sender/IP Authentication Logic", "source_file": "email_server/models.py", "file_type": "code", "degree": 6}, {"id": "email_server_models_log_email", "label": "log_email()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "log_email()", "community": 7, "community_name": "Models Core & Logging Utils", "source_file": "email_server/models.py", "file_type": "code", "degree": 3}, {"id": "email_server_models_get_sender_by_email", "label": "get_sender_by_email()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "get_sender_by_email()", "community": 6, "community_name": "Sender/IP Authentication Logic", "source_file": "email_server/models.py", "file_type": "code", "degree": 6}, {"id": "email_server_models_get_domain_by_name", "label": "get_domain_by_name()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "get_domain_by_name()", "community": 6, "community_name": "Sender/IP Authentication Logic", "source_file": "email_server/models.py", "file_type": "code", "degree": 3}, {"id": "email_server_models_get_whitelisted_ip", "label": "get_whitelisted_ip()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "get_whitelisted_ip()", "community": 6, "community_name": "Sender/IP Authentication Logic", "source_file": "email_server/models.py", "file_type": "code", "degree": 6}, {"id": "email_server_models_rationale_1", "label": "Database models for the SMTP server using ESRV schema. Enhanced security\u2026", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Database models for the SMTP server using ESRV schema. Enhanced security\u2026", "community": 7, "community_name": "Models Core & Logging Utils", "source_file": "email_server/models.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_models_rationale_32", "label": "Domain model with enhanced security features.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Domain model with enhanced security features.", "community": 3, "community_name": "App Bootstrap & Domain Models", "source_file": "email_server/models.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_models_rationale_50", "label": "Sender model with enhanced authentication controls. Security features: -\u2026", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Sender model with enhanced authentication controls. Security features: -\u2026", "community": 27, "community_name": "Sender Model", "source_file": "email_server/models.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_models_rationale_69", "label": "Check if this sender can send emails as the given from_address. Args:\u2026", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Check if this sender can send emails as the given from_address. Args:\u2026", "community": 27, "community_name": "Sender Model", "source_file": "email_server/models.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_models_rationale_91", "label": "IP whitelist model with domain-specific authentication. Security feature: - IPs\u2026", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "IP whitelist model with domain-specific authentication. Security feature: - IPs\u2026", "community": 3, "community_name": "App Bootstrap & Domain Models", "source_file": "email_server/models.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_models_rationale_107", "label": "Check if this IP can send emails for the given domain. Args: domain_name: The\u2026", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Check if this IP can send emails for the given domain. Args: domain_name: The\u2026", "community": 3, "community_name": "App Bootstrap & Domain Models", "source_file": "email_server/models.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_models_rationale_134", "label": "Email log model for tracking sent emails.", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Email log model for tracking sent emails.", "community": 8, "community_name": "Email Relay Delivery", "source_file": "email_server/models.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_models_rationale_160", "label": "Log for each recipient of an email, including status and error details.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Log for each recipient of an email, including status and error details.", "community": 7, "community_name": "Models Core & Logging Utils", "source_file": "email_server/models.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_models_rationale_178", "label": "Authentication log model for security auditing.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Authentication log model for security auditing.", "community": 10, "community_name": "Dashboard & Auth Log Web UI", "source_file": "email_server/models.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_models_rationale_193", "label": "DKIM key model for email signing.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "DKIM key model for email signing.", "community": 19, "community_name": "DKIM/Custom Header Models", "source_file": "email_server/models.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_models_rationale_209", "label": "Custom header model for domain-specific email headers.", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Custom header model for domain-specific email headers.", "community": 19, "community_name": "DKIM/Custom Header Models", "source_file": "email_server/models.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_models_rationale_223", "label": "Attachment metadata and file path, linked to EmailLog.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Attachment metadata and file path, linked to EmailLog.", "community": 5, "community_name": "SMTP Custom Protocol & Controllers", "source_file": "email_server/models.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_models_rationale_241", "label": "Create all database tables using ESRV schema.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Create all database tables using ESRV schema.", "community": 3, "community_name": "App Bootstrap & Domain Models", "source_file": "email_server/models.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_models_rationale_246", "label": "Hash a password using bcrypt.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Hash a password using bcrypt.", "community": 13, "community_name": "Sender Management Web UI", "source_file": "email_server/models.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_models_rationale_250", "label": "Check a password against its hash.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Check a password against its hash.", "community": 6, "community_name": "Sender/IP Authentication Logic", "source_file": "email_server/models.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_models_rationale_255", "label": "Log an authentication attempt for security auditing. Args: auth_type: Type of\u2026", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Log an authentication attempt for security auditing. Args: auth_type: Type of\u2026", "community": 6, "community_name": "Sender/IP Authentication Logic", "source_file": "email_server/models.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_models_rationale_285", "label": "Log an email send attempt. Args: from_address: Sender email to_address:\u2026", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Log an email send attempt. Args: from_address: Sender email to_address:\u2026", "community": 7, "community_name": "Models Core & Logging Utils", "source_file": "email_server/models.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_models_rationale_314", "label": "Get sender by email address.", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Get sender by email address.", "community": 6, "community_name": "Sender/IP Authentication Logic", "source_file": "email_server/models.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_models_rationale_330", "label": "Get whitelisted IP, optionally filtered by domain. Args: ip_address: IP address\u2026", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Get whitelisted IP, optionally filtered by domain. Args: ip_address: IP address\u2026", "community": 6, "community_name": "Sender/IP Authentication Logic", "source_file": "email_server/models.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_runner", "label": "server_runner.py", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 27.8, "font": {"size": 12, "color": "#ffffff"}, "title": "server_runner.py", "community": 3, "community_name": "App Bootstrap & Domain Models", "source_file": "email_server/server_runner.py", "file_type": "code", "degree": 22}, {"id": "email_server_server_runner_start_server", "label": "start_server()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 22.2, "font": {"size": 12, "color": "#ffffff"}, "title": "start_server()", "community": 3, "community_name": "App Bootstrap & Domain Models", "source_file": "email_server/server_runner.py", "file_type": "code", "degree": 15}, {"id": "email_server_server_runner_rationale_1", "label": "Modular SMTP Server with DKIM support. Main server file that ties all modules\u2026", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Modular SMTP Server with DKIM support. Main server file that ties all modules\u2026", "community": 3, "community_name": "App Bootstrap & Domain Models", "source_file": "email_server/server_runner.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_runner_rationale_36", "label": "Main server function.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Main server function.", "community": 3, "community_name": "App Bootstrap & Domain Models", "source_file": "email_server/server_runner.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_init", "label": "server_web_ui/__init__.py", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 18.1, "font": {"size": 12, "color": "#ffffff"}, "title": "server_web_ui/__init__.py", "community": 10, "community_name": "Dashboard & Auth Log Web UI", "source_file": "email_server/server_web_ui/__init__.py", "file_type": "code", "degree": 10}, {"id": "email_server_server_web_ui_init_rationale_1", "label": "SMTP Server Web UI Package This package provides a web interface for managing\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "SMTP Server Web UI Package This package provides a web interface for managing\u2026", "community": 10, "community_name": "Dashboard & Auth Log Web UI", "source_file": "email_server/server_web_ui/__init__.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_dashboard", "label": "dashboard.py", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 20.5, "font": {"size": 12, "color": "#ffffff"}, "title": "dashboard.py", "community": 10, "community_name": "Dashboard & Auth Log Web UI", "source_file": "email_server/server_web_ui/dashboard.py", "file_type": "code", "degree": 13}, {"id": "email_server_server_web_ui_dashboard_py_route", "label": "route", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "route", "community": 32, "community_name": "Dashboard Route", "source_file": "", "file_type": "code", "degree": 1}, {"id": "email_server_server_web_ui_dashboard_dashboard", "label": "dashboard()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "dashboard()", "community": 32, "community_name": "Dashboard Route", "source_file": "email_server/server_web_ui/dashboard.py", "file_type": "code", "degree": 3}, {"id": "email_server_server_web_ui_dashboard_rationale_1", "label": "Dashboard routes for the SMTP server web UI. This module provides the main\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Dashboard routes for the SMTP server web UI. This module provides the main\u2026", "community": 10, "community_name": "Dashboard & Auth Log Web UI", "source_file": "email_server/server_web_ui/dashboard.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_dashboard_rationale_17", "label": "Main dashboard showing overview of the email server.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Main dashboard showing overview of the email server.", "community": 32, "community_name": "Dashboard Route", "source_file": "email_server/server_web_ui/dashboard.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_database", "label": "database.py", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "database.py", "community": 1, "community_name": "Web UI Database & Settings Utils", "source_file": "email_server/server_web_ui/database.py", "file_type": "code", "degree": 7}, {"id": "email_server_server_web_ui_database_install_package", "label": "install_package()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "install_package()", "community": 1, "community_name": "Web UI Database & Settings Utils", "source_file": "email_server/server_web_ui/database.py", "file_type": "code", "degree": 3}, {"id": "email_server_server_web_ui_database_import_or_install_driver", "label": "import_or_install_driver()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "import_or_install_driver()", "community": 1, "community_name": "Web UI Database & Settings Utils", "source_file": "email_server/server_web_ui/database.py", "file_type": "code", "degree": 4}, {"id": "email_server_server_web_ui_database_test_database_connection", "label": "test_database_connection()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": "test_database_connection()", "community": 1, "community_name": "Web UI Database & Settings Utils", "source_file": "email_server/server_web_ui/database.py", "file_type": "code", "degree": 5}, {"id": "email_server_server_web_ui_database_rationale_1", "label": "Database utilities for the SMTP server.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Database utilities for the SMTP server.", "community": 1, "community_name": "Web UI Database & Settings Utils", "source_file": "email_server/server_web_ui/database.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_database_rationale_32", "label": "Install a Python package using pip. Args: package_name: Name of the package to\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Install a Python package using pip. Args: package_name: Name of the package to\u2026", "community": 1, "community_name": "Web UI Database & Settings Utils", "source_file": "email_server/server_web_ui/database.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_database_rationale_50", "label": "Import database driver, installing it if necessary. Args: db_type: Type of\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Import database driver, installing it if necessary. Args: db_type: Type of\u2026", "community": 1, "community_name": "Web UI Database & Settings Utils", "source_file": "email_server/server_web_ui/database.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_database_rationale_79", "label": "Test if a database connection can be established. Args: url: Database\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Test if a database connection can be established. Args: url: Database\u2026", "community": 1, "community_name": "Web UI Database & Settings Utils", "source_file": "email_server/server_web_ui/database.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_dkim", "label": "dkim.py", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 28.6, "font": {"size": 12, "color": "#ffffff"}, "title": "dkim.py", "community": 0, "community_name": "DKIM/SPF DNS Management UI", "source_file": "email_server/server_web_ui/dkim.py", "file_type": "code", "degree": 23}, {"id": "email_server_server_web_ui_dkim_py_route", "label": "route", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 16.5, "font": {"size": 12, "color": "#ffffff"}, "title": "route", "community": 0, "community_name": "DKIM/SPF DNS Management UI", "source_file": "", "file_type": "code", "degree": 8}, {"id": "email_server_server_web_ui_dkim_dkim_list", "label": "dkim_list()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "dkim_list()", "community": 0, "community_name": "DKIM/SPF DNS Management UI", "source_file": "email_server/server_web_ui/dkim.py", "file_type": "code", "degree": 7}, {"id": "email_server_server_web_ui_dkim_create_dkim", "label": "create_dkim()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": "create_dkim()", "community": 0, "community_name": "DKIM/SPF DNS Management UI", "source_file": "email_server/server_web_ui/dkim.py", "file_type": "code", "degree": 5}, {"id": "email_server_server_web_ui_dkim_regenerate_dkim", "label": "regenerate_dkim()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 16.5, "font": {"size": 12, "color": "#ffffff"}, "title": "regenerate_dkim()", "community": 0, "community_name": "DKIM/SPF DNS Management UI", "source_file": "email_server/server_web_ui/dkim.py", "file_type": "code", "degree": 8}, {"id": "email_server_server_web_ui_dkim_edit_dkim", "label": "edit_dkim()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "edit_dkim()", "community": 0, "community_name": "DKIM/SPF DNS Management UI", "source_file": "email_server/server_web_ui/dkim.py", "file_type": "code", "degree": 3}, {"id": "email_server_server_web_ui_dkim_toggle_dkim", "label": "toggle_dkim()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "toggle_dkim()", "community": 0, "community_name": "DKIM/SPF DNS Management UI", "source_file": "email_server/server_web_ui/dkim.py", "file_type": "code", "degree": 4}, {"id": "email_server_server_web_ui_dkim_remove_dkim", "label": "remove_dkim()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "remove_dkim()", "community": 0, "community_name": "DKIM/SPF DNS Management UI", "source_file": "email_server/server_web_ui/dkim.py", "file_type": "code", "degree": 3}, {"id": "email_server_server_web_ui_dkim_check_dkim_dns", "label": "check_dkim_dns()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": "check_dkim_dns()", "community": 0, "community_name": "DKIM/SPF DNS Management UI", "source_file": "email_server/server_web_ui/dkim.py", "file_type": "code", "degree": 5}, {"id": "email_server_server_web_ui_dkim_check_spf_dns", "label": "check_spf_dns()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": "check_spf_dns()", "community": 0, "community_name": "DKIM/SPF DNS Management UI", "source_file": "email_server/server_web_ui/dkim.py", "file_type": "code", "degree": 5}, {"id": "email_server_server_web_ui_dkim_rationale_1", "label": "DKIM blueprint for the SMTP server web UI. This module provides DKIM key\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "DKIM blueprint for the SMTP server web UI. This module provides DKIM key\u2026", "community": 0, "community_name": "DKIM/SPF DNS Management UI", "source_file": "email_server/server_web_ui/dkim.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_dkim_rationale_26", "label": "List all DKIM keys and DNS records.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "List all DKIM keys and DNS records.", "community": 0, "community_name": "DKIM/SPF DNS Management UI", "source_file": "email_server/server_web_ui/dkim.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_dkim_rationale_94", "label": "Create a new DKIM key for a domain, optionally with a custom selector.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Create a new DKIM key for a domain, optionally with a custom selector.", "community": 0, "community_name": "DKIM/SPF DNS Management UI", "source_file": "email_server/server_web_ui/dkim.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_dkim_rationale_129", "label": "Regenerate DKIM key for domain.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Regenerate DKIM key for domain.", "community": 0, "community_name": "DKIM/SPF DNS Management UI", "source_file": "email_server/server_web_ui/dkim.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_dkim_rationale_260", "label": "Edit DKIM key selector.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Edit DKIM key selector.", "community": 0, "community_name": "DKIM/SPF DNS Management UI", "source_file": "email_server/server_web_ui/dkim.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_dkim_rationale_312", "label": "Toggle DKIM key active status (Enable/Disable).", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Toggle DKIM key active status (Enable/Disable).", "community": 0, "community_name": "DKIM/SPF DNS Management UI", "source_file": "email_server/server_web_ui/dkim.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_dkim_rationale_364", "label": "Permanently remove DKIM key.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Permanently remove DKIM key.", "community": 0, "community_name": "DKIM/SPF DNS Management UI", "source_file": "email_server/server_web_ui/dkim.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_dkim_rationale_392", "label": "Check DKIM DNS record via AJAX.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Check DKIM DNS record via AJAX.", "community": 0, "community_name": "DKIM/SPF DNS Management UI", "source_file": "email_server/server_web_ui/dkim.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_dkim_rationale_419", "label": "Check SPF DNS record via AJAX.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Check SPF DNS record via AJAX.", "community": 0, "community_name": "DKIM/SPF DNS Management UI", "source_file": "email_server/server_web_ui/dkim.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_domains", "label": "domains.py", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 25.4, "font": {"size": 12, "color": "#ffffff"}, "title": "domains.py", "community": 14, "community_name": "Domain Management Web UI", "source_file": "email_server/server_web_ui/domains.py", "file_type": "code", "degree": 19}, {"id": "email_server_server_web_ui_domains_py_route", "label": "route", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "route", "community": 14, "community_name": "Domain Management Web UI", "source_file": "", "file_type": "code", "degree": 6}, {"id": "email_server_server_web_ui_domains_domains_list", "label": "domains_list()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "domains_list()", "community": 14, "community_name": "Domain Management Web UI", "source_file": "email_server/server_web_ui/domains.py", "file_type": "code", "degree": 2}, {"id": "email_server_server_web_ui_domains_add_domain", "label": "add_domain()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "add_domain()", "community": 14, "community_name": "Domain Management Web UI", "source_file": "email_server/server_web_ui/domains.py", "file_type": "code", "degree": 4}, {"id": "email_server_server_web_ui_domains_delete_domain", "label": "delete_domain()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "delete_domain()", "community": 14, "community_name": "Domain Management Web UI", "source_file": "email_server/server_web_ui/domains.py", "file_type": "code", "degree": 3}, {"id": "email_server_server_web_ui_domains_edit_domain", "label": "edit_domain()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "edit_domain()", "community": 14, "community_name": "Domain Management Web UI", "source_file": "email_server/server_web_ui/domains.py", "file_type": "code", "degree": 2}, {"id": "email_server_server_web_ui_domains_toggle_domain", "label": "toggle_domain()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "toggle_domain()", "community": 14, "community_name": "Domain Management Web UI", "source_file": "email_server/server_web_ui/domains.py", "file_type": "code", "degree": 3}, {"id": "email_server_server_web_ui_domains_remove_domain", "label": "remove_domain()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "remove_domain()", "community": 14, "community_name": "Domain Management Web UI", "source_file": "email_server/server_web_ui/domains.py", "file_type": "code", "degree": 3}, {"id": "email_server_server_web_ui_domains_rationale_1", "label": "Domains blueprint for the SMTP server web UI. This module provides domain\u2026", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Domains blueprint for the SMTP server web UI. This module provides domain\u2026", "community": 14, "community_name": "Domain Management Web UI", "source_file": "email_server/server_web_ui/domains.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_domains_rationale_79", "label": "Delete domain (soft delete).", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Delete domain (soft delete).", "community": 14, "community_name": "Domain Management Web UI", "source_file": "email_server/server_web_ui/domains.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_domains_rationale_154", "label": "Toggle domain active status (Enable/Disable).", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Toggle domain active status (Enable/Disable).", "community": 14, "community_name": "Domain Management Web UI", "source_file": "email_server/server_web_ui/domains.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_domains_rationale_180", "label": "Permanently remove domain and all associated data.", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Permanently remove domain and all associated data.", "community": 14, "community_name": "Domain Management Web UI", "source_file": "email_server/server_web_ui/domains.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_ip_whitelist", "label": "ip_whitelist.py", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 21.4, "font": {"size": 12, "color": "#ffffff"}, "title": "ip_whitelist.py", "community": 11, "community_name": "IP Whitelist Web UI", "source_file": "email_server/server_web_ui/ip_whitelist.py", "file_type": "code", "degree": 14}, {"id": "email_server_server_web_ui_ip_whitelist_py_route", "label": "route", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "route", "community": 11, "community_name": "IP Whitelist Web UI", "source_file": "", "file_type": "code", "degree": 6}, {"id": "email_server_server_web_ui_ip_whitelist_ips_list", "label": "ips_list()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ips_list()", "community": 11, "community_name": "IP Whitelist Web UI", "source_file": "email_server/server_web_ui/ip_whitelist.py", "file_type": "code", "degree": 3}, {"id": "email_server_server_web_ui_ip_whitelist_add_ip", "label": "add_ip()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "add_ip()", "community": 11, "community_name": "IP Whitelist Web UI", "source_file": "email_server/server_web_ui/ip_whitelist.py", "file_type": "code", "degree": 4}, {"id": "email_server_server_web_ui_ip_whitelist_disable_ip", "label": "disable_ip()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "disable_ip()", "community": 11, "community_name": "IP Whitelist Web UI", "source_file": "email_server/server_web_ui/ip_whitelist.py", "file_type": "code", "degree": 3}, {"id": "email_server_server_web_ui_ip_whitelist_enable_ip", "label": "enable_ip()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "enable_ip()", "community": 11, "community_name": "IP Whitelist Web UI", "source_file": "email_server/server_web_ui/ip_whitelist.py", "file_type": "code", "degree": 3}, {"id": "email_server_server_web_ui_ip_whitelist_remove_ip", "label": "remove_ip()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "remove_ip()", "community": 11, "community_name": "IP Whitelist Web UI", "source_file": "email_server/server_web_ui/ip_whitelist.py", "file_type": "code", "degree": 3}, {"id": "email_server_server_web_ui_ip_whitelist_edit_ip", "label": "edit_ip()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "edit_ip()", "community": 11, "community_name": "IP Whitelist Web UI", "source_file": "email_server/server_web_ui/ip_whitelist.py", "file_type": "code", "degree": 2}, {"id": "email_server_server_web_ui_ip_whitelist_rationale_1", "label": "IP Whitelist blueprint for the SMTP server web UI. This module provides IP\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "IP Whitelist blueprint for the SMTP server web UI. This module provides IP\u2026", "community": 11, "community_name": "IP Whitelist Web UI", "source_file": "email_server/server_web_ui/ip_whitelist.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_ip_whitelist_rationale_22", "label": "List all whitelisted IPs.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "List all whitelisted IPs.", "community": 11, "community_name": "IP Whitelist Web UI", "source_file": "email_server/server_web_ui/ip_whitelist.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_ip_whitelist_rationale_32", "label": "Add new whitelisted IP.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Add new whitelisted IP.", "community": 11, "community_name": "IP Whitelist Web UI", "source_file": "email_server/server_web_ui/ip_whitelist.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_ip_whitelist_rationale_83", "label": "Disable whitelisted IP (soft delete).", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Disable whitelisted IP (soft delete).", "community": 11, "community_name": "IP Whitelist Web UI", "source_file": "email_server/server_web_ui/ip_whitelist.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_ip_whitelist_rationale_108", "label": "Enable whitelisted IP.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Enable whitelisted IP.", "community": 11, "community_name": "IP Whitelist Web UI", "source_file": "email_server/server_web_ui/ip_whitelist.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_ip_whitelist_rationale_133", "label": "Permanently remove whitelisted IP.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Permanently remove whitelisted IP.", "community": 11, "community_name": "IP Whitelist Web UI", "source_file": "email_server/server_web_ui/ip_whitelist.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_logs", "label": "logs.py", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 18.9, "font": {"size": 12, "color": "#ffffff"}, "title": "logs.py", "community": 10, "community_name": "Dashboard & Auth Log Web UI", "source_file": "email_server/server_web_ui/logs.py", "file_type": "code", "degree": 11}, {"id": "email_server_server_web_ui_logs_py_route", "label": "route", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "route", "community": 10, "community_name": "Dashboard & Auth Log Web UI", "source_file": "", "file_type": "code", "degree": 1}, {"id": "email_server_server_web_ui_logs_logs", "label": "logs()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "logs()", "community": 10, "community_name": "Dashboard & Auth Log Web UI", "source_file": "email_server/server_web_ui/logs.py", "file_type": "code", "degree": 3}, {"id": "email_server_server_web_ui_logs_rationale_1", "label": "Logs blueprint for the SMTP server web UI. This module provides email and\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Logs blueprint for the SMTP server web UI. This module provides email and\u2026", "community": 10, "community_name": "Dashboard & Auth Log Web UI", "source_file": "email_server/server_web_ui/logs.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_logs_rationale_18", "label": "Display email and authentication logs.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Display email and authentication logs.", "community": 10, "community_name": "Dashboard & Auth Log Web UI", "source_file": "email_server/server_web_ui/logs.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_routes", "label": "routes.py", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 27.8, "font": {"size": 12, "color": "#ffffff"}, "title": "routes.py", "community": 10, "community_name": "Dashboard & Auth Log Web UI", "source_file": "email_server/server_web_ui/routes.py", "file_type": "code", "degree": 22}, {"id": "app_template_filter", "label": "app_template_filter", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "app_template_filter", "community": 31, "community_name": "Template Datetime Filter", "source_file": "", "file_type": "code", "degree": 1}, {"id": "email_server_server_web_ui_routes_format_datetime", "label": "format_datetime()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "format_datetime()", "community": 31, "community_name": "Template Datetime Filter", "source_file": "email_server/server_web_ui/routes.py", "file_type": "code", "degree": 4}, {"id": "errorhandler", "label": "errorhandler", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "errorhandler", "community": 0, "community_name": "DKIM/SPF DNS Management UI", "source_file": "", "file_type": "code", "degree": 2}, {"id": "email_server_server_web_ui_routes_not_found", "label": "not_found()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "not_found()", "community": 0, "community_name": "DKIM/SPF DNS Management UI", "source_file": "email_server/server_web_ui/routes.py", "file_type": "code", "degree": 3}, {"id": "email_server_server_web_ui_routes_internal_error", "label": "internal_error()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "internal_error()", "community": 0, "community_name": "DKIM/SPF DNS Management UI", "source_file": "email_server/server_web_ui/routes.py", "file_type": "code", "degree": 3}, {"id": "email_server_server_web_ui_routes_rationale_1", "label": "Main routes and blueprint definition for the SMTP server web UI.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Main routes and blueprint definition for the SMTP server web UI.", "community": 10, "community_name": "Dashboard & Auth Log Web UI", "source_file": "email_server/server_web_ui/routes.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_routes_rationale_27", "label": "Format datetime with the correct timezone from settings or argument.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Format datetime with the correct timezone from settings or argument.", "community": 31, "community_name": "Template Datetime Filter", "source_file": "email_server/server_web_ui/routes.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_senders", "label": "senders.py", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 22.2, "font": {"size": 12, "color": "#ffffff"}, "title": "senders.py", "community": 13, "community_name": "Sender Management Web UI", "source_file": "email_server/server_web_ui/senders.py", "file_type": "code", "degree": 15}, {"id": "email_server_server_web_ui_senders_py_route", "label": "route", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "route", "community": 13, "community_name": "Sender Management Web UI", "source_file": "", "file_type": "code", "degree": 6}, {"id": "email_server_server_web_ui_senders_senders_list", "label": "senders_list()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "senders_list()", "community": 13, "community_name": "Sender Management Web UI", "source_file": "email_server/server_web_ui/senders.py", "file_type": "code", "degree": 2}, {"id": "email_server_server_web_ui_senders_add_sender", "label": "add_sender()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "add_sender()", "community": 13, "community_name": "Sender Management Web UI", "source_file": "email_server/server_web_ui/senders.py", "file_type": "code", "degree": 4}, {"id": "email_server_server_web_ui_senders_delete_sender", "label": "delete_sender()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "delete_sender()", "community": 13, "community_name": "Sender Management Web UI", "source_file": "email_server/server_web_ui/senders.py", "file_type": "code", "degree": 3}, {"id": "email_server_server_web_ui_senders_enable_sender", "label": "enable_sender()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "enable_sender()", "community": 13, "community_name": "Sender Management Web UI", "source_file": "email_server/server_web_ui/senders.py", "file_type": "code", "degree": 2}, {"id": "email_server_server_web_ui_senders_remove_sender", "label": "remove_sender()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "remove_sender()", "community": 13, "community_name": "Sender Management Web UI", "source_file": "email_server/server_web_ui/senders.py", "file_type": "code", "degree": 3}, {"id": "email_server_server_web_ui_senders_edit_sender", "label": "edit_sender()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "edit_sender()", "community": 13, "community_name": "Sender Management Web UI", "source_file": "email_server/server_web_ui/senders.py", "file_type": "code", "degree": 3}, {"id": "email_server_server_web_ui_senders_rationale_1", "label": "Senders blueprint for the SMTP server web UI. This module provides sender\u2026", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Senders blueprint for the SMTP server web UI. This module provides sender\u2026", "community": 13, "community_name": "Sender Management Web UI", "source_file": "email_server/server_web_ui/senders.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_senders_rationale_86", "label": "Disable sender (soft delete).", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Disable sender (soft delete).", "community": 13, "community_name": "Sender Management Web UI", "source_file": "email_server/server_web_ui/senders.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_senders_rationale_136", "label": "Permanently remove sender.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Permanently remove sender.", "community": 13, "community_name": "Sender Management Web UI", "source_file": "email_server/server_web_ui/senders.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_settings", "label": "settings.py", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 27.0, "font": {"size": 12, "color": "#ffffff"}, "title": "settings.py", "community": 1, "community_name": "Web UI Database & Settings Utils", "source_file": "email_server/server_web_ui/settings.py", "file_type": "code", "degree": 21}, {"id": "email_server_server_web_ui_settings_allowed_file", "label": "allowed_file()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "allowed_file()", "community": 1, "community_name": "Web UI Database & Settings Utils", "source_file": "email_server/server_web_ui/settings.py", "file_type": "code", "degree": 3}, {"id": "email_server_server_web_ui_settings_get_template_context", "label": "get_template_context()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": "get_template_context()", "community": 1, "community_name": "Web UI Database & Settings Utils", "source_file": "email_server/server_web_ui/settings.py", "file_type": "code", "degree": 5}, {"id": "email_server_server_web_ui_settings_py_route", "label": "route", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "route", "community": 1, "community_name": "Web UI Database & Settings Utils", "source_file": "", "file_type": "code", "degree": 7}, {"id": "email_server_server_web_ui_settings_settings", "label": "settings()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "settings()", "community": 1, "community_name": "Web UI Database & Settings Utils", "source_file": "email_server/server_web_ui/settings.py", "file_type": "code", "degree": 4}, {"id": "email_server_server_web_ui_settings_settings_update", "label": "settings_update()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "settings_update()", "community": 1, "community_name": "Web UI Database & Settings Utils", "source_file": "email_server/server_web_ui/settings.py", "file_type": "code", "degree": 4}, {"id": "email_server_server_web_ui_settings_test_database_connection_endpoint", "label": "test_database_connection_endpoint()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "test_database_connection_endpoint()", "community": 1, "community_name": "Web UI Database & Settings Utils", "source_file": "email_server/server_web_ui/settings.py", "file_type": "code", "degree": 4}, {"id": "email_server_server_web_ui_settings_upload_cert", "label": "upload_cert()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "upload_cert()", "community": 1, "community_name": "Web UI Database & Settings Utils", "source_file": "email_server/server_web_ui/settings.py", "file_type": "code", "degree": 4}, {"id": "email_server_server_web_ui_settings_upload_key", "label": "upload_key()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "upload_key()", "community": 1, "community_name": "Web UI Database & Settings Utils", "source_file": "email_server/server_web_ui/settings.py", "file_type": "code", "degree": 4}, {"id": "email_server_server_web_ui_settings_get_server_ip", "label": "get_server_ip()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "get_server_ip()", "community": 1, "community_name": "Web UI Database & Settings Utils", "source_file": "email_server/server_web_ui/settings.py", "file_type": "code", "degree": 4}, {"id": "email_server_server_web_ui_settings_test_attachments_path", "label": "test_attachments_path()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "test_attachments_path()", "community": 1, "community_name": "Web UI Database & Settings Utils", "source_file": "email_server/server_web_ui/settings.py", "file_type": "code", "degree": 3}, {"id": "email_server_server_web_ui_settings_get_available_timezones", "label": "get_available_timezones()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "get_available_timezones()", "community": 1, "community_name": "Web UI Database & Settings Utils", "source_file": "email_server/server_web_ui/settings.py", "file_type": "code", "degree": 3}, {"id": "email_server_server_web_ui_settings_rationale_1", "label": "Settings blueprint for the SMTP server web UI. This module provides server\u2026", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Settings blueprint for the SMTP server web UI. This module provides server\u2026", "community": 1, "community_name": "Web UI Database & Settings Utils", "source_file": "email_server/server_web_ui/settings.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_settings_rationale_34", "label": "Get template context with CSRF token and common data.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Get template context with CSRF token and common data.", "community": 1, "community_name": "Web UI Database & Settings Utils", "source_file": "email_server/server_web_ui/settings.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_settings_rationale_46", "label": "Display and edit server settings.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Display and edit server settings.", "community": 1, "community_name": "Web UI Database & Settings Utils", "source_file": "email_server/server_web_ui/settings.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_settings_rationale_51", "label": "Update server settings.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Update server settings.", "community": 1, "community_name": "Web UI Database & Settings Utils", "source_file": "email_server/server_web_ui/settings.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_settings_rationale_128", "label": "Test database connection endpoint.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Test database connection endpoint.", "community": 1, "community_name": "Web UI Database & Settings Utils", "source_file": "email_server/server_web_ui/settings.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_settings_rationale_145", "label": "Handle certificate file upload.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Handle certificate file upload.", "community": 1, "community_name": "Web UI Database & Settings Utils", "source_file": "email_server/server_web_ui/settings.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_settings_rationale_172", "label": "Handle key file upload.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Handle key file upload.", "community": 1, "community_name": "Web UI Database & Settings Utils", "source_file": "email_server/server_web_ui/settings.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_settings_rationale_199", "label": "Get server's public IP address.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Get server's public IP address.", "community": 1, "community_name": "Web UI Database & Settings Utils", "source_file": "email_server/server_web_ui/settings.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_settings_rationale_212", "label": "Test if the attachments path is writable.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Test if the attachments path is writable.", "community": 1, "community_name": "Web UI Database & Settings Utils", "source_file": "email_server/server_web_ui/settings.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_settings_rationale_244", "label": "Get a list of all available timezones sorted alphabetically.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Get a list of all available timezones sorted alphabetically.", "community": 1, "community_name": "Web UI Database & Settings Utils", "source_file": "email_server/server_web_ui/settings.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_static_js_dkim_management", "label": "dkim-management.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "dkim-management.js", "community": 35, "community_name": "DKIM Management JS (Frontend)", "source_file": "email_server/server_web_ui/static/js/dkim-management.js", "file_type": "code", "degree": 1}, {"id": "email_server_server_web_ui_static_js_dkim_management_dkimmanagement", "label": "DKIMManagement", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "DKIMManagement", "community": 35, "community_name": "DKIM Management JS (Frontend)", "source_file": "email_server/server_web_ui/static/js/dkim-management.js", "file_type": "code", "degree": 1}, {"id": "email_server_server_web_ui_static_js_smtp_management", "label": "smtp-management.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "smtp-management.js", "community": 29, "community_name": "SMTP Management JS (Frontend)", "source_file": "email_server/server_web_ui/static/js/smtp-management.js", "file_type": "code", "degree": 3}, {"id": "email_server_server_web_ui_static_js_smtp_management_smtpmanagement", "label": "SMTPManagement", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "SMTPManagement", "community": 29, "community_name": "SMTP Management JS (Frontend)", "source_file": "email_server/server_web_ui/static/js/smtp-management.js", "file_type": "code", "degree": 1}, {"id": "email_server_server_web_ui_static_js_smtp_management_dnsverification", "label": "DNSVerification", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "DNSVerification", "community": 29, "community_name": "SMTP Management JS (Frontend)", "source_file": "email_server/server_web_ui/static/js/smtp-management.js", "file_type": "code", "degree": 1}, {"id": "email_server_server_web_ui_static_js_smtp_management_formvalidation", "label": "FormValidation", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "FormValidation", "community": 29, "community_name": "SMTP Management JS (Frontend)", "source_file": "email_server/server_web_ui/static/js/smtp-management.js", "file_type": "code", "degree": 1}, {"id": "email_server_server_web_ui_utils", "label": "utils.py", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 16.5, "font": {"size": 12, "color": "#ffffff"}, "title": "utils.py", "community": 0, "community_name": "DKIM/SPF DNS Management UI", "source_file": "email_server/server_web_ui/utils.py", "file_type": "code", "degree": 8}, {"id": "email_server_server_web_ui_utils_get_public_ip", "label": "get_public_ip()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 17.3, "font": {"size": 12, "color": "#ffffff"}, "title": "get_public_ip()", "community": 0, "community_name": "DKIM/SPF DNS Management UI", "source_file": "email_server/server_web_ui/utils.py", "file_type": "code", "degree": 9}, {"id": "email_server_server_web_ui_utils_check_dns_record", "label": "check_dns_record()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "check_dns_record()", "community": 0, "community_name": "DKIM/SPF DNS Management UI", "source_file": "email_server/server_web_ui/utils.py", "file_type": "code", "degree": 7}, {"id": "email_server_server_web_ui_utils_generate_spf_record", "label": "generate_spf_record()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": "generate_spf_record()", "community": 0, "community_name": "DKIM/SPF DNS Management UI", "source_file": "email_server/server_web_ui/utils.py", "file_type": "code", "degree": 5}, {"id": "email_server_server_web_ui_utils_rationale_1", "label": "Common utilities for the SMTP server web UI. This module provides shared\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Common utilities for the SMTP server web UI. This module provides shared\u2026", "community": 0, "community_name": "DKIM/SPF DNS Management UI", "source_file": "email_server/server_web_ui/utils.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_utils_rationale_17", "label": "Get the public IP address of the server.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Get the public IP address of the server.", "community": 0, "community_name": "DKIM/SPF DNS Management UI", "source_file": "email_server/server_web_ui/utils.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_utils_rationale_49", "label": "Check DNS record for a domain.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Check DNS record for a domain.", "community": 0, "community_name": "DKIM/SPF DNS Management UI", "source_file": "email_server/server_web_ui/utils.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_utils_rationale_139", "label": "Generate recommended SPF record, preserving existing mechanisms if present.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Generate recommended SPF record, preserving existing mechanisms if present.", "community": 0, "community_name": "DKIM/SPF DNS Management UI", "source_file": "email_server/server_web_ui/utils.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_view_message", "label": "view_message.py", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 18.9, "font": {"size": 12, "color": "#ffffff"}, "title": "view_message.py", "community": 22, "community_name": "Message Viewer Web UI", "source_file": "email_server/server_web_ui/view_message.py", "file_type": "code", "degree": 11}, {"id": "email_server_server_web_ui_view_message_py_route", "label": "route", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "route", "community": 22, "community_name": "Message Viewer Web UI", "source_file": "", "file_type": "code", "degree": 3}, {"id": "email_server_server_web_ui_view_message_view_message_content", "label": "view_message_content()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "view_message_content()", "community": 22, "community_name": "Message Viewer Web UI", "source_file": "email_server/server_web_ui/view_message.py", "file_type": "code", "degree": 3}, {"id": "email_server_server_web_ui_view_message_download_attachment", "label": "download_attachment()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "download_attachment()", "community": 22, "community_name": "Message Viewer Web UI", "source_file": "email_server/server_web_ui/view_message.py", "file_type": "code", "degree": 2}, {"id": "email_server_server_web_ui_view_message_delete_attachment", "label": "delete_attachment()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "delete_attachment()", "community": 22, "community_name": "Message Viewer Web UI", "source_file": "email_server/server_web_ui/view_message.py", "file_type": "code", "degree": 2}, {"id": "email_server_server_web_ui_view_message_rationale_1", "label": "Route to view full email message content if stored.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Route to view full email message content if stored.", "community": 22, "community_name": "Message Viewer Web UI", "source_file": "email_server/server_web_ui/view_message.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_view_message_rationale_14", "label": "View the full message content for an email log if stored.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "View the full message content for an email log if stored.", "community": 22, "community_name": "Message Viewer Web UI", "source_file": "email_server/server_web_ui/view_message.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_settings_loader", "label": "settings_loader.py", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 22.2, "font": {"size": 12, "color": "#ffffff"}, "title": "settings_loader.py", "community": 18, "community_name": "Settings Loader & TLS Utils", "source_file": "email_server/settings_loader.py", "file_type": "code", "degree": 15}, {"id": "email_server_settings_loader_generate_settings_ini", "label": "generate_settings_ini()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": "generate_settings_ini()", "community": 18, "community_name": "Settings Loader & TLS Utils", "source_file": "email_server/settings_loader.py", "file_type": "code", "degree": 5}, {"id": "path", "label": "Path", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Path", "community": 18, "community_name": "Settings Loader & TLS Utils", "source_file": "", "file_type": "code", "degree": 2}, {"id": "email_server_settings_loader_load_settings", "label": "load_settings()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 27.8, "font": {"size": 12, "color": "#ffffff"}, "title": "load_settings()", "community": 18, "community_name": "Settings Loader & TLS Utils", "source_file": "email_server/settings_loader.py", "file_type": "code", "degree": 22}, {"id": "configparser", "label": "ConfigParser", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ConfigParser", "community": 18, "community_name": "Settings Loader & TLS Utils", "source_file": "", "file_type": "code", "degree": 3}, {"id": "email_server_settings_loader_rationale_1", "label": "Settings loader for the SMTP server. Automatically generates settings.ini with\u2026", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Settings loader for the SMTP server. Automatically generates settings.ini with\u2026", "community": 18, "community_name": "Settings Loader & TLS Utils", "source_file": "email_server/settings_loader.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_settings_loader_rationale_60", "label": "Generate settings.ini with default values and comments if it does not exist.", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Generate settings.ini with default values and comments if it does not exist.", "community": 18, "community_name": "Settings Loader & TLS Utils", "source_file": "email_server/settings_loader.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_settings_loader_rationale_77", "label": "Load settings from settings.ini, generating it if needed.", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Load settings from settings.ini, generating it if needed.", "community": 18, "community_name": "Settings Loader & TLS Utils", "source_file": "email_server/settings_loader.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_smtp_handler", "label": "smtp_handler.py", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 31.9, "font": {"size": 12, "color": "#ffffff"}, "title": "smtp_handler.py", "community": 30, "community_name": "SMTP Handler Module & Message ID Util", "source_file": "email_server/smtp_handler.py", "file_type": "code", "degree": 27}, {"id": "email_server_smtp_handler_customsmtp", "label": "CustomSMTP", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 21.4, "font": {"size": 12, "color": "#ffffff"}, "title": "CustomSMTP", "community": 5, "community_name": "SMTP Custom Protocol & Controllers", "source_file": "email_server/smtp_handler.py", "file_type": "code", "degree": 14}, {"id": "aiosmtp", "label": "AIOSMTP", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "AIOSMTP", "community": 5, "community_name": "SMTP Custom Protocol & Controllers", "source_file": "", "file_type": "code", "degree": 1}, {"id": "email_server_smtp_handler_customsmtp_init", "label": ".__init__()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 5, "community_name": "SMTP Custom Protocol & Controllers", "source_file": "email_server/smtp_handler.py", "file_type": "code", "degree": 2}, {"id": "email_server_smtp_handler_customsmtp_get_auth_methods", "label": "._get_auth_methods()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "._get_auth_methods()", "community": 5, "community_name": "SMTP Custom Protocol & Controllers", "source_file": "email_server/smtp_handler.py", "file_type": "code", "degree": 1}, {"id": "email_server_smtp_handler_customsmtp_smtp_auth", "label": ".smtp_AUTH()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".smtp_AUTH()", "community": 5, "community_name": "SMTP Custom Protocol & Controllers", "source_file": "email_server/smtp_handler.py", "file_type": "code", "degree": 2}, {"id": "email_server_smtp_handler_enhancedcombinedauthenticator", "label": "EnhancedCombinedAuthenticator", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 18.9, "font": {"size": 12, "color": "#ffffff"}, "title": "EnhancedCombinedAuthenticator", "community": 20, "community_name": "Combined Authenticators", "source_file": "email_server/smtp_handler.py", "file_type": "code", "degree": 11}, {"id": "email_server_smtp_handler_enhancedcombinedauthenticator_init", "label": ".__init__()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 20, "community_name": "Combined Authenticators", "source_file": "email_server/smtp_handler.py", "file_type": "code", "degree": 3}, {"id": "email_server_smtp_handler_enhancedcombinedauthenticator_call", "label": ".__call__()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".__call__()", "community": 20, "community_name": "Combined Authenticators", "source_file": "email_server/smtp_handler.py", "file_type": "code", "degree": 1}, {"id": "email_server_smtp_handler_enhancedcustomsmtphandler", "label": "EnhancedCustomSMTPHandler", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 23.8, "font": {"size": 12, "color": "#ffffff"}, "title": "EnhancedCustomSMTPHandler", "community": 12, "community_name": "SMTP Handler Message Processing", "source_file": "email_server/smtp_handler.py", "file_type": "code", "degree": 17}, {"id": "email_server_smtp_handler_enhancedcustomsmtphandler_init", "label": ".__init__()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": ".__init__()", "community": 20, "community_name": "Combined Authenticators", "source_file": "email_server/smtp_handler.py", "file_type": "code", "degree": 6}, {"id": "email_server_smtp_handler_enhancedcustomsmtphandler_ensure_required_headers", "label": "._ensure_required_headers()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "._ensure_required_headers()", "community": 12, "community_name": "SMTP Handler Message Processing", "source_file": "email_server/smtp_handler.py", "file_type": "code", "degree": 4}, {"id": "email_server_smtp_handler_enhancedcustomsmtphandler_handle_data", "label": ".handle_DATA()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 17.3, "font": {"size": 12, "color": "#ffffff"}, "title": ".handle_DATA()", "community": 12, "community_name": "SMTP Handler Message Processing", "source_file": "email_server/smtp_handler.py", "file_type": "code", "degree": 9}, {"id": "email_server_smtp_handler_enhancedcustomsmtphandler_handle_rcpt", "label": ".handle_RCPT()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".handle_RCPT()", "community": 12, "community_name": "SMTP Handler Message Processing", "source_file": "email_server/smtp_handler.py", "file_type": "code", "degree": 2}, {"id": "email_server_smtp_handler_enhancedcustomsmtphandler_handle_mail", "label": ".handle_MAIL()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".handle_MAIL()", "community": 12, "community_name": "SMTP Handler Message Processing", "source_file": "email_server/smtp_handler.py", "file_type": "code", "degree": 3}, {"id": "email_server_smtp_handler_enhancedcustomsmtphandler_get_attachment_storage_path", "label": ".get_attachment_storage_path()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_attachment_storage_path()", "community": 12, "community_name": "SMTP Handler Message Processing", "source_file": "email_server/smtp_handler.py", "file_type": "code", "degree": 4}, {"id": "email_server_smtp_handler_enhancedcustomsmtphandler_get_content_type", "label": ".get_content_type()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".get_content_type()", "community": 12, "community_name": "SMTP Handler Message Processing", "source_file": "email_server/smtp_handler.py", "file_type": "code", "degree": 3}, {"id": "email_server_smtp_handler_tlscontroller", "label": "TLSController", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 20.5, "font": {"size": 12, "color": "#ffffff"}, "title": "TLSController", "community": 5, "community_name": "SMTP Custom Protocol & Controllers", "source_file": "email_server/smtp_handler.py", "file_type": "code", "degree": 13}, {"id": "controller", "label": "Controller", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 5, "community_name": "SMTP Custom Protocol & Controllers", "source_file": "", "file_type": "code", "degree": 2}, {"id": "email_server_smtp_handler_tlscontroller_init", "label": ".__init__()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 5, "community_name": "SMTP Custom Protocol & Controllers", "source_file": "email_server/smtp_handler.py", "file_type": "code", "degree": 2}, {"id": "email_server_smtp_handler_tlscontroller_factory", "label": ".factory()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".factory()", "community": 5, "community_name": "SMTP Custom Protocol & Controllers", "source_file": "email_server/smtp_handler.py", "file_type": "code", "degree": 2}, {"id": "email_server_smtp_handler_plaincontroller", "label": "PlainController", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 20.5, "font": {"size": 12, "color": "#ffffff"}, "title": "PlainController", "community": 5, "community_name": "SMTP Custom Protocol & Controllers", "source_file": "email_server/smtp_handler.py", "file_type": "code", "degree": 13}, {"id": "email_server_smtp_handler_plaincontroller_init", "label": ".__init__()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".__init__()", "community": 5, "community_name": "SMTP Custom Protocol & Controllers", "source_file": "email_server/smtp_handler.py", "file_type": "code", "degree": 3}, {"id": "email_server_smtp_handler_plaincontroller_factory", "label": ".factory()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".factory()", "community": 5, "community_name": "SMTP Custom Protocol & Controllers", "source_file": "email_server/smtp_handler.py", "file_type": "code", "degree": 2}, {"id": "email_server_smtp_handler_rationale_1", "label": "Enhanced SMTP handler for processing incoming emails with security controls.\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Enhanced SMTP handler for processing incoming emails with security controls.\u2026", "community": 30, "community_name": "SMTP Handler Module & Message ID Util", "source_file": "email_server/smtp_handler.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_smtp_handler_rationale_31", "label": "Custom SMTP class with configurable banner and secure AUTH handling.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Custom SMTP class with configurable banner and secure AUTH handling.", "community": 5, "community_name": "SMTP Custom Protocol & Controllers", "source_file": "email_server/smtp_handler.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_smtp_handler_rationale_54", "label": "Override AUTH command to close connection after failed authentication.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Override AUTH command to close connection after failed authentication.", "community": 5, "community_name": "SMTP Custom Protocol & Controllers", "source_file": "email_server/smtp_handler.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_smtp_handler_rationale_65", "label": "Enhanced combined authenticator with sender validation support. Features: -\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Enhanced combined authenticator with sender validation support. Features: -\u2026", "community": 20, "community_name": "Combined Authenticators", "source_file": "email_server/smtp_handler.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_smtp_handler_rationale_94", "label": "Enhanced custom SMTP handler with security controls.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Enhanced custom SMTP handler with security controls.", "community": 12, "community_name": "SMTP Handler Message Processing", "source_file": "email_server/smtp_handler.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_smtp_handler_rationale_106", "label": "Ensure all required email headers are present and properly formatted.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Ensure all required email headers are present and properly formatted.", "community": 12, "community_name": "SMTP Handler Message Processing", "source_file": "email_server/smtp_handler.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_smtp_handler_rationale_251", "label": "Handle incoming email data with improved header management and logging.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Handle incoming email data with improved header management and logging.", "community": 12, "community_name": "SMTP Handler Message Processing", "source_file": "email_server/smtp_handler.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_smtp_handler_rationale_584", "label": "Handle RCPT TO command - validate recipients.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Handle RCPT TO command - validate recipients.", "community": 12, "community_name": "SMTP Handler Message Processing", "source_file": "email_server/smtp_handler.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_smtp_handler_rationale_590", "label": "Handle MAIL FROM command with enhanced sender validation. Security Features: -\u2026", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Handle MAIL FROM command with enhanced sender validation. Security Features: -\u2026", "community": 12, "community_name": "SMTP Handler Message Processing", "source_file": "email_server/smtp_handler.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_smtp_handler_rationale_612", "label": "Generate the storage path for attachments based on sender domain,\u2026", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Generate the storage path for attachments based on sender domain,\u2026", "community": 12, "community_name": "SMTP Handler Message Processing", "source_file": "email_server/smtp_handler.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_smtp_handler_rationale_649", "label": "Get the correct content type for a file, trying multiple methods.", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Get the correct content type for a file, trying multiple methods.", "community": 12, "community_name": "SMTP Handler Message Processing", "source_file": "email_server/smtp_handler.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_smtp_handler_rationale_680", "label": "Custom controller for direct TLS (SMTPS, port 465) support.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Custom controller for direct TLS (SMTPS, port 465) support.", "community": 5, "community_name": "SMTP Custom Protocol & Controllers", "source_file": "email_server/smtp_handler.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_smtp_handler_rationale_708", "label": "Controller for plain SMTP with authentication and IP whitelist fallback.", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller for plain SMTP with authentication and IP whitelist fallback.", "community": 5, "community_name": "SMTP Custom Protocol & Controllers", "source_file": "email_server/smtp_handler.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_tls_utils", "label": "tls_utils.py", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 17.3, "font": {"size": 12, "color": "#ffffff"}, "title": "tls_utils.py", "community": 18, "community_name": "Settings Loader & TLS Utils", "source_file": "email_server/tls_utils.py", "file_type": "code", "degree": 9}, {"id": "email_server_tls_utils_generate_self_signed_cert", "label": "generate_self_signed_cert()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "generate_self_signed_cert()", "community": 3, "community_name": "App Bootstrap & Domain Models", "source_file": "email_server/tls_utils.py", "file_type": "code", "degree": 4}, {"id": "email_server_tls_utils_create_ssl_context", "label": "create_ssl_context()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "create_ssl_context()", "community": 3, "community_name": "App Bootstrap & Domain Models", "source_file": "email_server/tls_utils.py", "file_type": "code", "degree": 4}, {"id": "email_server_tls_utils_rationale_1", "label": "TLS utilities for the SMTP server.", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "TLS utilities for the SMTP server.", "community": 18, "community_name": "Settings Loader & TLS Utils", "source_file": "email_server/tls_utils.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_tls_utils_rationale_21", "label": "Generate self-signed SSL certificate if it doesn't exist.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Generate self-signed SSL certificate if it doesn't exist.", "community": 3, "community_name": "App Bootstrap & Domain Models", "source_file": "email_server/tls_utils.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_tls_utils_rationale_61", "label": "Create SSL context for TLS support.", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Create SSL context for TLS support.", "community": 3, "community_name": "App Bootstrap & Domain Models", "source_file": "email_server/tls_utils.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_tool_box", "label": "tool_box.py", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 31.1, "font": {"size": 12, "color": "#ffffff"}, "title": "tool_box.py", "community": 7, "community_name": "Models Core & Logging Utils", "source_file": "email_server/tool_box.py", "file_type": "code", "degree": 26}, {"id": "email_server_tool_box_ensure_folder_exists", "label": "ensure_folder_exists()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "ensure_folder_exists()", "community": 7, "community_name": "Models Core & Logging Utils", "source_file": "email_server/tool_box.py", "file_type": "code", "degree": 6}, {"id": "email_server_tool_box_setup_logging", "label": "setup_logging()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "setup_logging()", "community": 7, "community_name": "Models Core & Logging Utils", "source_file": "email_server/tool_box.py", "file_type": "code", "degree": 3}, {"id": "email_server_tool_box_get_logger", "label": "get_logger()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 27.0, "font": {"size": 12, "color": "#ffffff"}, "title": "get_logger()", "community": 7, "community_name": "Models Core & Logging Utils", "source_file": "email_server/tool_box.py", "file_type": "code", "degree": 21}, {"id": "email_server_tool_box_get_current_time", "label": "get_current_time()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 22.2, "font": {"size": 12, "color": "#ffffff"}, "title": "get_current_time()", "community": 0, "community_name": "DKIM/SPF DNS Management UI", "source_file": "email_server/tool_box.py", "file_type": "code", "degree": 15}, {"id": "email_server_tool_box_generate_message_id", "label": "generate_message_id()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "generate_message_id()", "community": 30, "community_name": "SMTP Handler Module & Message ID Util", "source_file": "email_server/tool_box.py", "file_type": "code", "degree": 4}, {"id": "email_server_tool_box_rationale_1", "label": "Utility functions for the email server.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Utility functions for the email server.", "community": 7, "community_name": "Models Core & Logging Utils", "source_file": "email_server/tool_box.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_tool_box_rationale_17", "label": "Ensure that the folder for the given filepath exists.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Ensure that the folder for the given filepath exists.", "community": 7, "community_name": "Models Core & Logging Utils", "source_file": "email_server/tool_box.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_tool_box_rationale_27", "label": "Set up global logging configuration using settings.ini. Should be called once\u2026", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Set up global logging configuration using settings.ini. Should be called once\u2026", "community": 7, "community_name": "Models Core & Logging Utils", "source_file": "email_server/tool_box.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_tool_box_rationale_46", "label": "Get a logger with the given name (default: module name). Ensures logging is set\u2026", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Get a logger with the given name (default: module name). Ensures logging is set\u2026", "community": 7, "community_name": "Models Core & Logging Utils", "source_file": "email_server/tool_box.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_tool_box_rationale_67", "label": "Get current time with timezone from settings.", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Get current time with timezone from settings.", "community": 0, "community_name": "DKIM/SPF DNS Management UI", "source_file": "email_server/tool_box.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_tool_box_rationale_72", "label": "Generate a consistent Message-ID for both email headers and database storage.\u2026", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Generate a consistent Message-ID for both email headers and database storage.\u2026", "community": 30, "community_name": "SMTP Handler Module & Message ID Util", "source_file": "email_server/tool_box.py", "file_type": "rationale", "degree": 1}, {"id": "script_install_service", "label": "script_install_service.sh", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "script_install_service.sh", "community": 25, "community_name": "systemd Install Script", "source_file": "script_install_service.sh", "file_type": "code", "degree": 6}, {"id": "script_install_service_sh__entry", "label": "script_install_service.sh script", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "script_install_service.sh script", "community": 25, "community_name": "systemd Install Script", "source_file": "script_install_service.sh", "file_type": "code", "degree": 6}, {"id": "script_install_service_usage", "label": "usage()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "usage()", "community": 25, "community_name": "systemd Install Script", "source_file": "script_install_service.sh", "file_type": "code", "degree": 2}, {"id": "script_install_service_write_user_services", "label": "write_user_services()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "write_user_services()", "community": 25, "community_name": "systemd Install Script", "source_file": "script_install_service.sh", "file_type": "code", "degree": 2}, {"id": "script_install_service_remove_user_services", "label": "remove_user_services()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "remove_user_services()", "community": 25, "community_name": "systemd Install Script", "source_file": "script_install_service.sh", "file_type": "code", "degree": 2}, {"id": "script_install_service_write_system_services", "label": "write_system_services()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "write_system_services()", "community": 25, "community_name": "systemd Install Script", "source_file": "script_install_service.sh", "file_type": "code", "degree": 2}, {"id": "script_install_service_remove_system_services", "label": "remove_system_services()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "remove_system_services()", "community": 25, "community_name": "systemd Install Script", "source_file": "script_install_service.sh", "file_type": "code", "degree": 2}, {"id": "script_nginx_setup", "label": "script_nginx_setup.sh", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "script_nginx_setup.sh", "community": 33, "community_name": "nginx Setup Script", "source_file": "script_nginx_setup.sh", "file_type": "code", "degree": 2}, {"id": "script_nginx_setup_sh__entry", "label": "script_nginx_setup.sh script", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "script_nginx_setup.sh script", "community": 33, "community_name": "nginx Setup Script", "source_file": "script_nginx_setup.sh", "file_type": "code", "degree": 1}, {"id": "script_nginx_setup_error_messages", "label": "ERROR_MESSAGES", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ERROR_MESSAGES", "community": 33, "community_name": "nginx Setup Script", "source_file": "script_nginx_setup.sh", "file_type": "code", "degree": 1}, {"id": "script_setup_py_environment", "label": "script_setup_py_environment.sh", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "script_setup_py_environment.sh", "community": 36, "community_name": "Python Env Setup Script", "source_file": "script_setup_py_environment.sh", "file_type": "code", "degree": 1}, {"id": "script_setup_py_environment_sh__entry", "label": "script_setup_py_environment.sh script", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "script_setup_py_environment.sh script", "community": 36, "community_name": "Python Env Setup Script", "source_file": "script_setup_py_environment.sh", "file_type": "code", "degree": 1}, {"id": "tests_bash_send_email", "label": "bash_send_email.sh", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "bash_send_email.sh", "community": 37, "community_name": "bash_send_email Test Script", "source_file": "tests/bash_send_email.sh", "file_type": "code", "degree": 1}, {"id": "tests_bash_send_email_sh__entry", "label": "bash_send_email.sh script", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "bash_send_email.sh script", "community": 37, "community_name": "bash_send_email Test Script", "source_file": "tests/bash_send_email.sh", "file_type": "code", "degree": 1}, {"id": "tests_send_email", "label": "send_email.py", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "send_email.py", "community": 28, "community_name": "send_email.py Test Script", "source_file": "tests/send_email.py", "file_type": "code", "degree": 2}, {"id": "tests_send_email_send_test_email", "label": "send_test_email()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "send_test_email()", "community": 28, "community_name": "send_email.py Test Script", "source_file": "tests/send_email.py", "file_type": "code", "degree": 2}, {"id": "tests_send_email_send_test_email_tls", "label": "send_test_email_tls()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "send_test_email_tls()", "community": 28, "community_name": "send_email.py Test Script", "source_file": "tests/send_email.py", "file_type": "code", "degree": 2}, {"id": "tests_send_email_rationale_19", "label": "Send a test email using plain SMTP.", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Send a test email using plain SMTP.", "community": 28, "community_name": "send_email.py Test Script", "source_file": "tests/send_email.py", "file_type": "rationale", "degree": 1}, {"id": "tests_send_email_rationale_37", "label": "Send a test email using STARTTLS.", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Send a test email using STARTTLS.", "community": 28, "community_name": "send_email.py Test Script", "source_file": "tests/send_email.py", "file_type": "rationale", "degree": 1}, {"id": "email_server_server_web_ui_templates_add_domain_page", "label": "Add Domain Page", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Add Domain Page", "community": 2, "community_name": "Admin Template Pages", "source_file": "email_server/server_web_ui/templates/add_domain.html", "file_type": "code", "degree": 5}, {"id": "email_server_server_web_ui_templates_add_ip_page", "label": "Add IP Whitelist Page", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Add IP Whitelist Page", "community": 2, "community_name": "Admin Template Pages", "source_file": "email_server/server_web_ui/templates/add_ip.html", "file_type": "code", "degree": 5}, {"id": "email_server_server_web_ui_templates_add_sender_page", "label": "Add Sender Page", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Add Sender Page", "community": 2, "community_name": "Admin Template Pages", "source_file": "email_server/server_web_ui/templates/add_sender.html", "file_type": "code", "degree": 5}, {"id": "email_server_server_web_ui_templates_base_page", "label": "Base Layout Template", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 23.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Base Layout Template", "community": 2, "community_name": "Admin Template Pages", "source_file": "email_server/server_web_ui/templates/base.html", "file_type": "code", "degree": 17}, {"id": "email_server_server_web_ui_templates_dashboard_page", "label": "Dashboard Page", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 23.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Dashboard Page", "community": 2, "community_name": "Admin Template Pages", "source_file": "email_server/server_web_ui/templates/dashboard.html", "file_type": "code", "degree": 17}, {"id": "email_server_server_web_ui_templates_dkim_page", "label": "DKIM Key Management Page", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "DKIM Key Management Page", "community": 2, "community_name": "Admin Template Pages", "source_file": "email_server/server_web_ui/templates/dkim.html", "file_type": "code", "degree": 7}, {"id": "email_server_server_web_ui_templates_domains_page", "label": "Domains List Page", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Domains List Page", "community": 2, "community_name": "Admin Template Pages", "source_file": "email_server/server_web_ui/templates/domains.html", "file_type": "code", "degree": 7}, {"id": "email_server_server_web_ui_templates_edit_dkim_page", "label": "Edit DKIM Selector Page", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Edit DKIM Selector Page", "community": 2, "community_name": "Admin Template Pages", "source_file": "email_server/server_web_ui/templates/edit_dkim.html", "file_type": "code", "degree": 4}, {"id": "email_server_server_web_ui_templates_edit_domain_page", "label": "Edit Domain Page", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Edit Domain Page", "community": 2, "community_name": "Admin Template Pages", "source_file": "email_server/server_web_ui/templates/edit_domain.html", "file_type": "code", "degree": 4}, {"id": "email_server_server_web_ui_templates_edit_ip_page", "label": "Edit IP Whitelist Page", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Edit IP Whitelist Page", "community": 2, "community_name": "Admin Template Pages", "source_file": "email_server/server_web_ui/templates/edit_ip.html", "file_type": "code", "degree": 4}, {"id": "email_server_server_web_ui_templates_edit_sender_page", "label": "Edit Sender Page", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Edit Sender Page", "community": 2, "community_name": "Admin Template Pages", "source_file": "email_server/server_web_ui/templates/edit_sender.html", "file_type": "code", "degree": 4}, {"id": "email_server_server_web_ui_templates_error_page", "label": "Error Page", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Error Page", "community": 2, "community_name": "Admin Template Pages", "source_file": "email_server/server_web_ui/templates/error.html", "file_type": "code", "degree": 2}, {"id": "email_server_server_web_ui_templates_ips_page", "label": "Whitelisted IPs List Page", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Whitelisted IPs List Page", "community": 2, "community_name": "Admin Template Pages", "source_file": "email_server/server_web_ui/templates/ips.html", "file_type": "code", "degree": 6}, {"id": "email_server_server_web_ui_templates_logs_page", "label": "Emails/Auth Logs Page", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Emails/Auth Logs Page", "community": 2, "community_name": "Admin Template Pages", "source_file": "email_server/server_web_ui/templates/logs.html", "file_type": "code", "degree": 6}, {"id": "email_server_server_web_ui_templates_senders_page", "label": "Senders List Page", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Senders List Page", "community": 2, "community_name": "Admin Template Pages", "source_file": "email_server/server_web_ui/templates/senders.html", "file_type": "code", "degree": 7}, {"id": "email_server_server_web_ui_templates_settings_page", "label": "Server Settings Page", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Server Settings Page", "community": 2, "community_name": "Admin Template Pages", "source_file": "email_server/server_web_ui/templates/settings.html", "file_type": "code", "degree": 4}, {"id": "email_server_server_web_ui_templates_sidebar_email_partial", "label": "Sidebar Navigation Partial", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 21.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Sidebar Navigation Partial", "community": 2, "community_name": "Admin Template Pages", "source_file": "email_server/server_web_ui/templates/sidebar_email.html", "file_type": "code", "degree": 14}, {"id": "email_server_server_web_ui_templates_view_message_content_page", "label": "View Full Message Content Page", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "View Full Message Content Page", "community": 2, "community_name": "Admin Template Pages", "source_file": "email_server/server_web_ui/templates/view_message_content.html", "file_type": "code", "degree": 4}, {"id": "email_server_server_web_ui_templates_domains_domain_model", "label": "Domain Data Model", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 20.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Domain Data Model", "community": 2, "community_name": "Admin Template Pages", "source_file": "email_server/server_web_ui/templates/domains.html", "file_type": "concept", "degree": 13}, {"id": "email_server_server_web_ui_templates_senders_sender_model", "label": "Sender/User Data Model", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Sender/User Data Model", "community": 2, "community_name": "Admin Template Pages", "source_file": "email_server/server_web_ui/templates/senders.html", "file_type": "concept", "degree": 5}, {"id": "email_server_server_web_ui_templates_dkim_dkim_key_model", "label": "DKIM Key Data Model", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": "DKIM Key Data Model", "community": 2, "community_name": "Admin Template Pages", "source_file": "email_server/server_web_ui/templates/dkim.html", "file_type": "concept", "degree": 5}, {"id": "email_server_server_web_ui_templates_ips_ip_whitelist_model", "label": "IP Whitelist Data Model", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "IP Whitelist Data Model", "community": 2, "community_name": "Admin Template Pages", "source_file": "email_server/server_web_ui/templates/ips.html", "file_type": "concept", "degree": 4}, {"id": "email_server_server_web_ui_templates_logs_email_log_model", "label": "Email Log Data Model", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Email Log Data Model", "community": 2, "community_name": "Admin Template Pages", "source_file": "email_server/server_web_ui/templates/logs.html", "file_type": "concept", "degree": 3}, {"id": "email_server_server_web_ui_templates_logs_auth_log_model", "label": "Auth Log Data Model", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Auth Log Data Model", "community": 2, "community_name": "Admin Template Pages", "source_file": "email_server/server_web_ui/templates/logs.html", "file_type": "concept", "degree": 2}, {"id": "email_server_server_web_ui_templates_settings_server_settings_model", "label": "Server Settings (INI) Data Model", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Server Settings (INI) Data Model", "community": 2, "community_name": "Admin Template Pages", "source_file": "email_server/server_web_ui/templates/settings.html", "file_type": "concept", "degree": 1}, {"id": "email_server_server_web_ui_templates_view_message_content_attachment_model", "label": "Email Attachment Data Model", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Email Attachment Data Model", "community": 2, "community_name": "Admin Template Pages", "source_file": "email_server/server_web_ui/templates/view_message_content.html", "file_type": "concept", "degree": 1}, {"id": "email_server_server_web_ui_templates_base_health_check_concept", "label": "check_health() Service Status Pattern", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "check_health() Service Status Pattern", "community": 2, "community_name": "Admin Template Pages", "source_file": "email_server/server_web_ui/templates/base.html", "file_type": "concept", "degree": 2}, {"id": "readme_doc", "label": "PyMTA-server README", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 18.1, "font": {"size": 12, "color": "#ffffff"}, "title": "PyMTA-server README", "community": 24, "community_name": "README: License & Auth Features", "source_file": "README.md", "file_type": "document", "degree": 10}, {"id": "readme_dkim", "label": "DKIM (planned feature)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DKIM (planned feature)", "community": 23, "community_name": "DKIM/DNS Dependencies", "source_file": "README.md", "file_type": "concept", "degree": 2}, {"id": "readme_spf", "label": "SPF DNS Records (delivery success)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "SPF DNS Records (delivery success)", "community": 24, "community_name": "README: License & Auth Features", "source_file": "README.md", "file_type": "concept", "degree": 1}, {"id": "readme_ip_whitelisting", "label": "Sender IP Whitelisting", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Sender IP Whitelisting", "community": 21, "community_name": "CLI Usage & IP Whitelisting Docs", "source_file": "README.md", "file_type": "concept", "degree": 2}, {"id": "readme_username_password_auth", "label": "Username/Password Authentication", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Username/Password Authentication", "community": 24, "community_name": "README: License & Auth Features", "source_file": "README.md", "file_type": "concept", "degree": 1}, {"id": "readme_store_sent_emails", "label": "Optional Storing of Sent Emails", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Optional Storing of Sent Emails", "community": 24, "community_name": "README: License & Auth Features", "source_file": "README.md", "file_type": "concept", "degree": 1}, {"id": "readme_license", "label": "AGPL-3.0 License", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AGPL-3.0 License", "community": 24, "community_name": "README: License & Auth Features", "source_file": "README.md", "file_type": "concept", "degree": 2}, {"id": "readme_unified_doc", "label": "SMTP Server with Web Management Frontend README (legacy layout)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 23.8, "font": {"size": 12, "color": "#ffffff"}, "title": "SMTP Server with Web Management Frontend README (legacy layout)", "community": 15, "community_name": "README Unified: Structure & Deployment", "source_file": "README_unified.md", "file_type": "document", "degree": 17}, {"id": "readme_unified_smtp_server", "label": "Full SMTP Server (send/receive with auth)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Full SMTP Server (send/receive with auth)", "community": 16, "community_name": "README Unified & Requirements: SMTP/DB Deps", "source_file": "README_unified.md", "file_type": "concept", "degree": 3}, {"id": "readme_unified_web_management_interface", "label": "Flask Web Management Interface", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Flask Web Management Interface", "community": 15, "community_name": "README Unified: Structure & Deployment", "source_file": "README_unified.md", "file_type": "concept", "degree": 2}, {"id": "readme_unified_dkim_support", "label": "DKIM Support (auto key gen + signing)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "DKIM Support (auto key gen + signing)", "community": 23, "community_name": "DKIM/DNS Dependencies", "source_file": "README_unified.md", "file_type": "concept", "degree": 7}, {"id": "readme_unified_tls_ssl", "label": "TLS/SSL Encryption", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TLS/SSL Encryption", "community": 15, "community_name": "README Unified: Structure & Deployment", "source_file": "README_unified.md", "file_type": "concept", "degree": 2}, {"id": "readme_unified_domain_management", "label": "Domain Management", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Domain Management", "community": 15, "community_name": "README Unified: Structure & Deployment", "source_file": "README_unified.md", "file_type": "concept", "degree": 1}, {"id": "readme_unified_user_authentication", "label": "Per-user/per-domain User Authentication", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Per-user/per-domain User Authentication", "community": 26, "community_name": "Auth Order Fix Notes", "source_file": "README_unified.md", "file_type": "concept", "degree": 3}, {"id": "readme_unified_ip_whitelisting", "label": "IP Whitelisting (auth-free sending)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "IP Whitelisting (auth-free sending)", "community": 21, "community_name": "CLI Usage & IP Whitelisting Docs", "source_file": "README_unified.md", "file_type": "concept", "degree": 4}, {"id": "readme_unified_email_relay", "label": "Email Relay (forward to external servers)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Email Relay (forward to external servers)", "community": 15, "community_name": "README Unified: Structure & Deployment", "source_file": "README_unified.md", "file_type": "concept", "degree": 1}, {"id": "readme_unified_settings_ini", "label": "settings.ini Configuration File", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "settings.ini Configuration File", "community": 15, "community_name": "README Unified: Structure & Deployment", "source_file": "README_unified.md", "file_type": "concept", "degree": 1}, {"id": "readme_unified_database_schema", "label": "SQLite Database Schema (domains, users, whitelisted_ips, dkim_keys, email_logs, auth_logs, custom_headers)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "SQLite Database Schema (domains, users, whitelisted_ips, dkim_keys, email_logs, auth_logs, custom_headers)", "community": 16, "community_name": "README Unified & Requirements: SMTP/DB Deps", "source_file": "README_unified.md", "file_type": "concept", "degree": 3}, {"id": "readme_unified_api_endpoints", "label": "REST API Endpoints (/health, /api/server/status, /api/server/restart)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "REST API Endpoints (/health, /api/server/status, /api/server/restart)", "community": 15, "community_name": "README Unified: Structure & Deployment", "source_file": "README_unified.md", "file_type": "concept", "degree": 1}, {"id": "readme_unified_dns_configuration", "label": "DNS Configuration (DKIM/SPF/MX records)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "DNS Configuration (DKIM/SPF/MX records)", "community": 23, "community_name": "DKIM/DNS Dependencies", "source_file": "README_unified.md", "file_type": "concept", "degree": 3}, {"id": "readme_unified_systemd_service", "label": "Systemd Service (production deployment)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Systemd Service (production deployment)", "community": 15, "community_name": "README Unified: Structure & Deployment", "source_file": "README_unified.md", "file_type": "concept", "degree": 1}, {"id": "readme_unified_reverse_proxy", "label": "Nginx Reverse Proxy", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Nginx Reverse Proxy", "community": 15, "community_name": "README Unified: Structure & Deployment", "source_file": "README_unified.md", "file_type": "concept", "degree": 1}, {"id": "readme_unified_project_structure", "label": "Project Structure (app.py, main.py, email_server/, email_frontend/)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Project Structure (app.py, main.py, email_server/, email_frontend/)", "community": 15, "community_name": "README Unified: Structure & Deployment", "source_file": "README_unified.md", "file_type": "concept", "degree": 1}, {"id": "readme_unified_mit_license", "label": "MIT License", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MIT License", "community": 24, "community_name": "README: License & Auth Features", "source_file": "README_unified.md", "file_type": "concept", "degree": 2}, {"id": "requirements_doc", "label": "Unified Requirements File", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 23.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Unified Requirements File", "community": 16, "community_name": "README Unified & Requirements: SMTP/DB Deps", "source_file": "requirements.txt", "file_type": "document", "degree": 16}, {"id": "requirements_aiosmtpd", "label": "aiosmtpd (dependency)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "aiosmtpd (dependency)", "community": 16, "community_name": "README Unified & Requirements: SMTP/DB Deps", "source_file": "requirements.txt", "file_type": "concept", "degree": 2}, {"id": "requirements_sqlalchemy", "label": "sqlalchemy (dependency)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "sqlalchemy (dependency)", "community": 16, "community_name": "README Unified & Requirements: SMTP/DB Deps", "source_file": "requirements.txt", "file_type": "concept", "degree": 2}, {"id": "requirements_pyopenssl", "label": "pyOpenSSL (dependency)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "pyOpenSSL (dependency)", "community": 15, "community_name": "README Unified: Structure & Deployment", "source_file": "requirements.txt", "file_type": "concept", "degree": 2}, {"id": "requirements_bcrypt", "label": "bcrypt (dependency)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "bcrypt (dependency)", "community": 26, "community_name": "Auth Order Fix Notes", "source_file": "requirements.txt", "file_type": "concept", "degree": 2}, {"id": "requirements_dnspython", "label": "dnspython (dependency)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "dnspython (dependency)", "community": 23, "community_name": "DKIM/DNS Dependencies", "source_file": "requirements.txt", "file_type": "concept", "degree": 2}, {"id": "requirements_dkimpy", "label": "dkimpy (dependency)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "dkimpy (dependency)", "community": 23, "community_name": "DKIM/DNS Dependencies", "source_file": "requirements.txt", "file_type": "concept", "degree": 2}, {"id": "requirements_cryptography", "label": "cryptography (dependency)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "cryptography (dependency)", "community": 23, "community_name": "DKIM/DNS Dependencies", "source_file": "requirements.txt", "file_type": "concept", "degree": 2}, {"id": "requirements_aiosmtplib", "label": "aiosmtplib (dependency)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "aiosmtplib (dependency)", "community": 16, "community_name": "README Unified & Requirements: SMTP/DB Deps", "source_file": "requirements.txt", "file_type": "concept", "degree": 2}, {"id": "requirements_flask", "label": "Flask (dependency)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Flask (dependency)", "community": 15, "community_name": "README Unified: Structure & Deployment", "source_file": "requirements.txt", "file_type": "concept", "degree": 2}, {"id": "requirements_flask_sqlalchemy", "label": "Flask-SQLAlchemy (dependency)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Flask-SQLAlchemy (dependency)", "community": 16, "community_name": "README Unified & Requirements: SMTP/DB Deps", "source_file": "requirements.txt", "file_type": "concept", "degree": 2}, {"id": "requirements_jinja2", "label": "Jinja2 (dependency)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Jinja2 (dependency)", "community": 16, "community_name": "README Unified & Requirements: SMTP/DB Deps", "source_file": "requirements.txt", "file_type": "concept", "degree": 1}, {"id": "requirements_werkzeug", "label": "Werkzeug (dependency)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Werkzeug (dependency)", "community": 16, "community_name": "README Unified & Requirements: SMTP/DB Deps", "source_file": "requirements.txt", "file_type": "concept", "degree": 1}, {"id": "requirements_requests", "label": "requests (dependency)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "requests (dependency)", "community": 16, "community_name": "README Unified & Requirements: SMTP/DB Deps", "source_file": "requirements.txt", "file_type": "concept", "degree": 1}, {"id": "requirements_pytz", "label": "pytz (dependency)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "pytz (dependency)", "community": 16, "community_name": "README Unified & Requirements: SMTP/DB Deps", "source_file": "requirements.txt", "file_type": "concept", "degree": 1}, {"id": "requirements_gunicorn", "label": "gunicorn (dependency)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "gunicorn (dependency)", "community": 24, "community_name": "README: License & Auth Features", "source_file": "requirements.txt", "file_type": "concept", "degree": 2}, {"id": "requirements_python_dotenv", "label": "python-dotenv (dependency)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "python-dotenv (dependency)", "community": 16, "community_name": "README Unified & Requirements: SMTP/DB Deps", "source_file": "requirements.txt", "file_type": "concept", "degree": 1}, {"id": "tests_email_body_lorem_ipsum", "label": "Lorem Ipsum Test Email Body", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Lorem Ipsum Test Email Body", "community": 17, "community_name": "Manual Testing Docs (swaks/CLI)", "source_file": "tests/email_body.txt", "file_type": "document", "degree": 2}, {"id": "tests_general_cli_usage_doc", "label": "CLI/Web Usage Guide (tests)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 17.3, "font": {"size": 12, "color": "#ffffff"}, "title": "CLI/Web Usage Guide (tests)", "community": 21, "community_name": "CLI Usage & IP Whitelisting Docs", "source_file": "tests/general_cli_usage.md", "file_type": "document", "degree": 9}, {"id": "tests_general_cli_usage_web_interface_setup", "label": "Web Interface Setup Workflow (dev/prod)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Web Interface Setup Workflow (dev/prod)", "community": 21, "community_name": "CLI Usage & IP Whitelisting Docs", "source_file": "tests/general_cli_usage.md", "file_type": "concept", "degree": 1}, {"id": "tests_general_cli_usage_domain_management", "label": "Domain Management (web UI: /email/domains)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Domain Management (web UI: /email/domains)", "community": 21, "community_name": "CLI Usage & IP Whitelisting Docs", "source_file": "tests/general_cli_usage.md", "file_type": "concept", "degree": 1}, {"id": "tests_general_cli_usage_user_management", "label": "User Management (web UI: /email/users)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "User Management (web UI: /email/users)", "community": 21, "community_name": "CLI Usage & IP Whitelisting Docs", "source_file": "tests/general_cli_usage.md", "file_type": "concept", "degree": 1}, {"id": "tests_general_cli_usage_ip_whitelist_management", "label": "IP Whitelist Management (web UI: /email/ips)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "IP Whitelist Management (web UI: /email/ips)", "community": 21, "community_name": "CLI Usage & IP Whitelisting Docs", "source_file": "tests/general_cli_usage.md", "file_type": "concept", "degree": 2}, {"id": "tests_general_cli_usage_dkim_key_management", "label": "DKIM Key Management (web UI: /email/dkim)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DKIM Key Management (web UI: /email/dkim)", "community": 23, "community_name": "DKIM/DNS Dependencies", "source_file": "tests/general_cli_usage.md", "file_type": "concept", "degree": 2}, {"id": "tests_general_cli_usage_send_email_script", "label": "tests/send_email.py script", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "tests/send_email.py script", "community": 17, "community_name": "Manual Testing Docs (swaks/CLI)", "source_file": "tests/general_cli_usage.md", "file_type": "concept", "degree": 2}, {"id": "tests_general_cli_usage_swaks", "label": "swaks (SMTP test CLI tool)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.4, "font": {"size": 0, "color": "#ffffff"}, "title": "swaks (SMTP test CLI tool)", "community": 17, "community_name": "Manual Testing Docs (swaks/CLI)", "source_file": "tests/general_cli_usage.md", "file_type": "concept", "degree": 3}, {"id": "tests_general_cli_usage_db_direct_access", "label": "Direct sqlite3 DB Access/Queries", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Direct sqlite3 DB Access/Queries", "community": 21, "community_name": "CLI Usage & IP Whitelisting Docs", "source_file": "tests/general_cli_usage.md", "file_type": "concept", "degree": 1}, {"id": "tests_note_authentication_order_fix_authentication_order_fix", "label": "SMTP Authentication Order Fix (June 2025)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": "SMTP Authentication Order Fix (June 2025)", "community": 26, "community_name": "Auth Order Fix Notes", "source_file": "tests/note_authentication_order_fix.md", "file_type": "rationale", "degree": 5}, {"id": "tests_note_authentication_order_fix_auth_call", "label": "AuthResult / email_server/auth.py __call__ (code snippet)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "AuthResult / email_server/auth.py __call__ (code snippet)", "community": 26, "community_name": "Auth Order Fix Notes", "source_file": "tests/note_authentication_order_fix.md", "file_type": "code", "degree": 1}, {"id": "tests_note_authentication_order_fix_ip_whitelisting_fallback", "label": "IP Whitelisting as Secondary/Fallback Authentication", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "IP Whitelisting as Secondary/Fallback Authentication", "community": 21, "community_name": "CLI Usage & IP Whitelisting Docs", "source_file": "tests/note_authentication_order_fix.md", "file_type": "concept", "degree": 2}, {"id": "tests_note_authentication_order_fix_auth_ports", "label": "AUTH Advertised on Both Plain SMTP and TLS Ports", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "AUTH Advertised on Both Plain SMTP and TLS Ports", "community": 26, "community_name": "Auth Order Fix Notes", "source_file": "tests/note_authentication_order_fix.md", "file_type": "concept", "degree": 1}, {"id": "tests_note_authentication_order_fix_no_starttls", "label": "STARTTLS Not Advertised (direct TLS only)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "STARTTLS Not Advertised (direct TLS only)", "community": 26, "community_name": "Auth Order Fix Notes", "source_file": "tests/note_authentication_order_fix.md", "file_type": "rationale", "degree": 1}, {"id": "tests_run_tests_manually_doc", "label": "Manual Test Setup Instructions", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Manual Test Setup Instructions", "community": 17, "community_name": "Manual Testing Docs (swaks/CLI)", "source_file": "tests/run_tests_manually.md", "file_type": "document", "degree": 6}, {"id": "tests_run_tests_manually_web_interface_setup", "label": "Web Interface Setup for Manual Testing", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Web Interface Setup for Manual Testing", "community": 17, "community_name": "Manual Testing Docs (swaks/CLI)", "source_file": "tests/run_tests_manually.md", "file_type": "concept", "degree": 1}, {"id": "tests_run_tests_manually_dkim_key_generation", "label": "DKIM Key Generation (manual test setup)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DKIM Key Generation (manual test setup)", "community": 17, "community_name": "Manual Testing Docs (swaks/CLI)", "source_file": "tests/run_tests_manually.md", "file_type": "concept", "degree": 2}, {"id": "tests_run_tests_manually_send_email_script", "label": "tests/send_email.py script (manual test usage)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "tests/send_email.py script (manual test usage)", "community": 17, "community_name": "Manual Testing Docs (swaks/CLI)", "source_file": "tests/run_tests_manually.md", "file_type": "concept", "degree": 2}, {"id": "tests_run_tests_manually_swaks", "label": "swaks (SMTP test CLI tool, manual test usage)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "swaks (SMTP test CLI tool, manual test usage)", "community": 17, "community_name": "Manual Testing Docs (swaks/CLI)", "source_file": "tests/run_tests_manually.md", "file_type": "concept", "degree": 2}, {"id": "tests_run_tests_manually_db_log_check", "label": "Check DB Logs (sqlite3 email_logs query)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Check DB Logs (sqlite3 email_logs query)", "community": 17, "community_name": "Manual Testing Docs (swaks/CLI)", "source_file": "tests/run_tests_manually.md", "file_type": "concept", "degree": 1}, {"id": "tests_pdf_test_1_document", "label": "PDF Test Document (French Lipsum)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PDF Test Document (French Lipsum)", "community": 17, "community_name": "Manual Testing Docs (swaks/CLI)", "source_file": "tests/pdf_test_1.pdf", "file_type": "document", "degree": 2}, {"id": "tests_pdf_test_1_pebbles_image", "label": "Beach Pebbles Photo (embedded image)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Beach Pebbles Photo (embedded image)", "community": 17, "community_name": "Manual Testing Docs (swaks/CLI)", "source_file": "tests/pdf_test_1.pdf", "file_type": "image", "degree": 1}, {"id": "tests_hello_dogecoin_meme_image", "label": "Hello.jpg (Dogecoin Doge Meme Image)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Hello.jpg (Dogecoin Doge Meme Image)", "community": 38, "community_name": "Hello.jpg Test Fixture (Doge Meme)", "source_file": "tests/Hello.jpg", "file_type": "image", "degree": 1}, {"id": "tests_hello_email_attachment_test_fixture", "label": "Test Email Attachment Fixture", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Test Email Attachment Fixture", "community": 38, "community_name": "Hello.jpg Test Fixture (Doge Meme)", "source_file": "tests/Hello.jpg", "file_type": "concept", "degree": 1}];
|
|
const RAW_EDGES = [{"from": "app", "to": "app_main", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app", "to": "app_smtpserverapp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app", "to": "email_server_dkim_manager", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app", "to": "email_server_dkim_manager_dkimmanager", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app", "to": "email_server_models", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app", "to": "email_server_models_authlog", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app", "to": "email_server_models_create_tables", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app", "to": "email_server_models_customheader", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app", "to": "email_server_models_dkimkey", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app", "to": "email_server_models_domain", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app", "to": "email_server_models_emaillog", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app", "to": "email_server_models_hash_password", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app", "to": "email_server_models_sender", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app", "to": "email_server_models_whitelistedip", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app", "to": "email_server_server_runner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app", "to": "email_server_server_runner_start_server", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app", "to": "email_server_server_web_ui_routes", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app", "to": "email_server_settings_loader", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app", "to": "email_server_settings_loader_load_settings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app", "to": "email_server_tool_box", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app", "to": "email_server_tool_box_get_logger", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_smtpserverapp", "to": "app_main", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_smtpserverapp", "to": "app_rationale_45", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_smtpserverapp", "to": "app_smtpserverapp_check_health", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_smtpserverapp", "to": "app_smtpserverapp_create_flask_app", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_smtpserverapp", "to": "app_smtpserverapp_get_absolute_database_url", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_smtpserverapp", "to": "app_smtpserverapp_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_smtpserverapp", "to": "app_smtpserverapp_init_sample_data", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_smtpserverapp", "to": "app_smtpserverapp_run", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_smtpserverapp", "to": "app_smtpserverapp_run_smtp_server", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_smtpserverapp", "to": "app_smtpserverapp_start_smtp_server", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_smtpserverapp", "to": "email_server_dkim_manager_dkimmanager", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "app_smtpserverapp", "to": "email_server_models_authlog", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "app_smtpserverapp", "to": "email_server_models_customheader", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "app_smtpserverapp", "to": "email_server_models_dkimkey", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "app_smtpserverapp", "to": "email_server_models_domain", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "app_smtpserverapp", "to": "email_server_models_emaillog", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "app_smtpserverapp", "to": "email_server_models_sender", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "app_smtpserverapp", "to": "email_server_models_whitelistedip", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "app_smtpserverapp_init", "to": "email_server_settings_loader_load_settings", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_smtpserverapp_get_absolute_database_url", "to": "app_rationale_57", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_smtpserverapp_get_absolute_database_url", "to": "app_smtpserverapp_create_flask_app", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_smtpserverapp_create_flask_app", "to": "app_rationale_75", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_smtpserverapp_create_flask_app", "to": "email_server_models_create_tables", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_smtpserverapp_create_flask_app", "to": "app_smtpserverapp_run", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_smtpserverapp_init_sample_data", "to": "app_rationale_154", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_smtpserverapp_init_sample_data", "to": "email_server_dkim_manager_dkimmanager", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_smtpserverapp_init_sample_data", "to": "email_server_models_create_tables", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_smtpserverapp_init_sample_data", "to": "email_server_models_domain", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_smtpserverapp_init_sample_data", "to": "email_server_models_hash_password", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_smtpserverapp_init_sample_data", "to": "email_server_models_sender", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_smtpserverapp_init_sample_data", "to": "email_server_models_whitelistedip", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_smtpserverapp_start_smtp_server", "to": "app_rationale_229", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_smtpserverapp_start_smtp_server", "to": "app_smtpserverapp_run", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_smtpserverapp_start_smtp_server", "to": "app_smtpserverapp_run_smtp_server", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_smtpserverapp_start_smtp_server", "to": "email_server_server_runner_start_server", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_smtpserverapp_run", "to": "app_main", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_smtpserverapp_run", "to": "app_rationale_268", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_smtpserverapp_check_health", "to": "app_rationale_320", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_smtpserverapp_check_health", "to": "email_server_models_create_tables", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_main", "to": "email_server_settings_loader_load_settings", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_init", "to": "email_server_init_rationale_1", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_auth", "to": "email_server_auth_enhancedauthenticator", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_auth", "to": "email_server_auth_enhancedipauthenticator", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_auth", "to": "email_server_auth_get_authenticated_domain_id", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_auth", "to": "email_server_auth_validate_sender_authorization", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_auth", "to": "email_server_models", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_auth", "to": "email_server_models_check_password", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_auth", "to": "email_server_models_domain", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_auth", "to": "email_server_models_get_domain_by_name", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_auth", "to": "email_server_models_get_sender_by_email", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_auth", "to": "email_server_models_get_whitelisted_ip", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_auth", "to": "email_server_models_log_auth_attempt", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_auth", "to": "email_server_models_sender", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_auth", "to": "email_server_models_whitelistedip", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_auth", "to": "email_server_tool_box", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_auth", "to": "email_server_tool_box_get_logger", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_auth", "to": "email_server_auth_rationale_1", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_auth", "to": "email_server_smtp_handler", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_auth_enhancedauthenticator", "to": "email_server_auth_enhancedauthenticator_call", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_auth_enhancedauthenticator", "to": "email_server_models_domain", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "email_server_auth_enhancedauthenticator", "to": "email_server_models_sender", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "email_server_auth_enhancedauthenticator", "to": "email_server_models_whitelistedip", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "email_server_auth_enhancedauthenticator", "to": "email_server_auth_rationale_23", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_auth_enhancedauthenticator", "to": "email_server_smtp_handler", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_auth_enhancedauthenticator", "to": "email_server_smtp_handler_customsmtp", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "email_server_auth_enhancedauthenticator", "to": "email_server_smtp_handler_enhancedcombinedauthenticator", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "email_server_auth_enhancedauthenticator", "to": "email_server_smtp_handler_enhancedcombinedauthenticator_init", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_auth_enhancedauthenticator", "to": "email_server_smtp_handler_enhancedcustomsmtphandler", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "email_server_auth_enhancedauthenticator", "to": "email_server_smtp_handler_enhancedcustomsmtphandler_init", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_auth_enhancedauthenticator", "to": "email_server_smtp_handler_plaincontroller", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "email_server_auth_enhancedauthenticator", "to": "email_server_smtp_handler_tlscontroller", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "email_server_auth_enhancedauthenticator_call", "to": "email_server_models_check_password", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_auth_enhancedauthenticator_call", "to": "email_server_models_get_sender_by_email", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_auth_enhancedauthenticator_call", "to": "email_server_models_log_auth_attempt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_auth_enhancedipauthenticator", "to": "email_server_auth_enhancedipauthenticator_can_authenticate_for_domain", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_auth_enhancedipauthenticator", "to": "email_server_models_domain", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "email_server_auth_enhancedipauthenticator", "to": "email_server_models_sender", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "email_server_auth_enhancedipauthenticator", "to": "email_server_models_whitelistedip", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "email_server_auth_enhancedipauthenticator", "to": "email_server_auth_rationale_91", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_auth_enhancedipauthenticator", "to": "email_server_auth_validate_sender_authorization", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_auth_enhancedipauthenticator", "to": "email_server_smtp_handler", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_auth_enhancedipauthenticator", "to": "email_server_smtp_handler_customsmtp", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "email_server_auth_enhancedipauthenticator", "to": "email_server_smtp_handler_enhancedcombinedauthenticator", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "email_server_auth_enhancedipauthenticator", "to": "email_server_smtp_handler_enhancedcombinedauthenticator_init", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_auth_enhancedipauthenticator", "to": "email_server_smtp_handler_enhancedcustomsmtphandler", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "email_server_auth_enhancedipauthenticator", "to": "email_server_smtp_handler_enhancedcustomsmtphandler_init", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_auth_enhancedipauthenticator", "to": "email_server_smtp_handler_plaincontroller", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "email_server_auth_enhancedipauthenticator", "to": "email_server_smtp_handler_tlscontroller", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "email_server_auth_enhancedipauthenticator_can_authenticate_for_domain", "to": "email_server_models_get_whitelisted_ip", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_auth_enhancedipauthenticator_can_authenticate_for_domain", "to": "email_server_auth_rationale_101", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_auth_enhancedipauthenticator_can_authenticate_for_domain", "to": "email_server_auth_validate_sender_authorization", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_auth_validate_sender_authorization", "to": "email_server_auth_rationale_122", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_auth_validate_sender_authorization", "to": "email_server_models_log_auth_attempt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_auth_validate_sender_authorization", "to": "email_server_smtp_handler", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_auth_validate_sender_authorization", "to": "email_server_smtp_handler_enhancedcustomsmtphandler_handle_mail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_auth_get_authenticated_domain_id", "to": "email_server_models_get_domain_by_name", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_auth_get_authenticated_domain_id", "to": "email_server_auth_rationale_196", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager", "to": "email_server_server_web_ui_dkim", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager", "to": "email_server_dkim_manager_dkimmanager", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager", "to": "email_server_models", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager", "to": "email_server_models_customheader", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager", "to": "email_server_models_dkimkey", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager", "to": "email_server_models_domain", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager", "to": "email_server_settings_loader", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager", "to": "email_server_settings_loader_load_settings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager", "to": "email_server_tool_box", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager", "to": "email_server_tool_box_get_current_time", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager", "to": "email_server_tool_box_get_logger", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager", "to": "email_server_dkim_manager_rationale_1", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager", "to": "email_server_server_runner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager", "to": "email_server_server_web_ui_domains", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager", "to": "email_server_smtp_handler", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager_dkimmanager", "to": "email_server_dkim_manager_dkimmanager_generate_dkim_keypair", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager_dkimmanager", "to": "email_server_dkim_manager_dkimmanager_generate_random_selector", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager_dkimmanager", "to": "email_server_dkim_manager_dkimmanager_get_active_custom_headers", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager_dkimmanager", "to": "email_server_dkim_manager_dkimmanager_get_active_dkim_key", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager_dkimmanager", "to": "email_server_dkim_manager_dkimmanager_get_dkim_private_key", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager_dkimmanager", "to": "email_server_dkim_manager_dkimmanager_get_dkim_public_key_record", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager_dkimmanager", "to": "email_server_dkim_manager_dkimmanager_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager_dkimmanager", "to": "email_server_dkim_manager_dkimmanager_initialize_default_keys", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager_dkimmanager", "to": "email_server_dkim_manager_dkimmanager_list_dkim_keys", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager_dkimmanager", "to": "email_server_dkim_manager_dkimmanager_sign_email", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager_dkimmanager", "to": "email_server_models_customheader", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "email_server_dkim_manager_dkimmanager", "to": "email_server_models_dkimkey", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "email_server_dkim_manager_dkimmanager", "to": "email_server_models_domain", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "email_server_dkim_manager_dkimmanager", "to": "email_server_dkim_manager_rationale_21", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager_dkimmanager", "to": "email_server_server_runner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager_dkimmanager", "to": "email_server_server_runner_start_server", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager_dkimmanager", "to": "email_server_server_web_ui_dkim", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager_dkimmanager", "to": "email_server_server_web_ui_dkim_check_dkim_dns", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager_dkimmanager", "to": "email_server_server_web_ui_dkim_create_dkim", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager_dkimmanager", "to": "email_server_server_web_ui_dkim_dkim_list", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager_dkimmanager", "to": "email_server_server_web_ui_dkim_regenerate_dkim", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager_dkimmanager", "to": "email_server_server_web_ui_domains", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager_dkimmanager", "to": "email_server_server_web_ui_domains_add_domain", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager_dkimmanager", "to": "email_server_smtp_handler", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager_dkimmanager", "to": "email_server_smtp_handler_customsmtp", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "email_server_dkim_manager_dkimmanager", "to": "email_server_smtp_handler_enhancedcombinedauthenticator", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "email_server_dkim_manager_dkimmanager", "to": "email_server_smtp_handler_enhancedcustomsmtphandler", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "email_server_dkim_manager_dkimmanager", "to": "email_server_smtp_handler_enhancedcustomsmtphandler_init", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager_dkimmanager", "to": "email_server_smtp_handler_plaincontroller", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "email_server_dkim_manager_dkimmanager", "to": "email_server_smtp_handler_tlscontroller", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "email_server_dkim_manager_dkimmanager_init", "to": "email_server_dkim_manager_dkimmanager_generate_random_selector", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager_dkimmanager_init", "to": "email_server_dkim_manager_rationale_24", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager_dkimmanager_generate_random_selector", "to": "email_server_dkim_manager_rationale_32", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager_dkimmanager_generate_dkim_keypair", "to": "email_server_models_dkimkey", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager_dkimmanager_generate_dkim_keypair", "to": "email_server_tool_box_get_current_time", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager_dkimmanager_generate_dkim_keypair", "to": "email_server_dkim_manager_dkimmanager_initialize_default_keys", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager_dkimmanager_generate_dkim_keypair", "to": "email_server_dkim_manager_rationale_36", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager_dkimmanager_get_active_dkim_key", "to": "email_server_dkim_manager_dkimmanager_get_dkim_private_key", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager_dkimmanager_get_active_dkim_key", "to": "email_server_dkim_manager_dkimmanager_get_dkim_public_key_record", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager_dkimmanager_get_active_dkim_key", "to": "email_server_dkim_manager_dkimmanager_sign_email", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager_dkimmanager_get_active_dkim_key", "to": "email_server_dkim_manager_rationale_134", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager_dkimmanager_get_dkim_private_key", "to": "email_server_dkim_manager_rationale_149", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager_dkimmanager_get_dkim_public_key_record", "to": "email_server_dkim_manager_rationale_156", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager_dkimmanager_sign_email", "to": "email_server_dkim_manager_rationale_169", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager_dkimmanager_initialize_default_keys", "to": "email_server_dkim_manager_rationale_232", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_dkim_manager_dkimmanager_get_active_custom_headers", "to": "email_server_dkim_manager_rationale_252", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_email_relay", "to": "email_server_email_relay_emailrelay", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_email_relay", "to": "email_server_models", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_email_relay", "to": "email_server_models_emaillog", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_email_relay", "to": "email_server_models_emailrecipientlog", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_email_relay", "to": "email_server_settings_loader", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_email_relay", "to": "email_server_settings_loader_load_settings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_email_relay", "to": "email_server_tool_box", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_email_relay", "to": "email_server_tool_box_get_current_time", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_email_relay", "to": "email_server_tool_box_get_logger", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_email_relay", "to": "email_server_email_relay_rationale_1", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_email_relay", "to": "email_server_smtp_handler", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_email_relay_emailrelay", "to": "email_server_email_relay_emailrelay_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_email_relay_emailrelay", "to": "email_server_email_relay_emailrelay_log_email", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_email_relay_emailrelay", "to": "email_server_email_relay_emailrelay_modify_headers_for_recipients", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_email_relay_emailrelay", "to": "email_server_email_relay_emailrelay_prepare_email_for_recipient", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_email_relay_emailrelay", "to": "email_server_email_relay_emailrelay_relay_email", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_email_relay_emailrelay", "to": "email_server_email_relay_emailrelay_relay_email_async", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_email_relay_emailrelay", "to": "email_server_models_emaillog", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "email_server_email_relay_emailrelay", "to": "email_server_models_emailrecipientlog", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "email_server_email_relay_emailrelay", "to": "email_server_email_relay_rationale_20", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_email_relay_emailrelay", "to": "email_server_smtp_handler", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_email_relay_emailrelay", "to": "email_server_smtp_handler_customsmtp", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "email_server_email_relay_emailrelay", "to": "email_server_smtp_handler_enhancedcombinedauthenticator", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "email_server_email_relay_emailrelay", "to": "email_server_smtp_handler_enhancedcustomsmtphandler", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "email_server_email_relay_emailrelay", "to": "email_server_smtp_handler_enhancedcustomsmtphandler_init", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_email_relay_emailrelay", "to": "email_server_smtp_handler_plaincontroller", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "email_server_email_relay_emailrelay", "to": "email_server_smtp_handler_tlscontroller", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "email_server_email_relay_emailrelay_modify_headers_for_recipients", "to": "email_server_email_relay_rationale_30", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_email_relay_emailrelay_prepare_email_for_recipient", "to": "email_server_email_relay_emailrelay_relay_email_async", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_email_relay_emailrelay_prepare_email_for_recipient", "to": "email_server_email_relay_rationale_69", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_email_relay_emailrelay_relay_email_async", "to": "email_server_email_relay_emailrelay_relay_email", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_email_relay_emailrelay_relay_email_async", "to": "email_server_email_relay_rationale_111", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_email_relay_emailrelay_relay_email", "to": "email_server_email_relay_rationale_297", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_email_relay_emailrelay_log_email", "to": "email_server_models_emaillog", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_email_relay_emailrelay_log_email", "to": "email_server_models_emailrecipientlog", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_email_relay_emailrelay_log_email", "to": "email_server_tool_box_get_current_time", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_email_relay_emailrelay_log_email", "to": "email_server_email_relay_rationale_301", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models", "to": "email_server_models_authlog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models", "to": "email_server_models_check_password", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models", "to": "email_server_models_create_tables", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models", "to": "email_server_models_customheader", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models", "to": "email_server_models_dkimkey", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models", "to": "email_server_models_domain", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models", "to": "email_server_models_emailattachment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models", "to": "email_server_models_emaillog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models", "to": "email_server_models_emailrecipientlog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models", "to": "email_server_models_get_domain_by_name", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models", "to": "email_server_models_get_sender_by_email", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models", "to": "email_server_models_get_whitelisted_ip", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models", "to": "email_server_models_hash_password", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models", "to": "email_server_models_log_auth_attempt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models", "to": "email_server_models_log_email", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models", "to": "email_server_models_sender", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models", "to": "email_server_models_whitelistedip", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models", "to": "email_server_settings_loader", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models", "to": "email_server_settings_loader_load_settings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models", "to": "email_server_tool_box", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models", "to": "email_server_tool_box_ensure_folder_exists", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models", "to": "email_server_tool_box_get_logger", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models", "to": "email_server_models_rationale_1", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models", "to": "email_server_server_runner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models", "to": "email_server_server_web_ui_dashboard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models", "to": "email_server_server_web_ui_dkim", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models", "to": "email_server_server_web_ui_domains", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models", "to": "email_server_server_web_ui_ip_whitelist", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models", "to": "email_server_server_web_ui_logs", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models", "to": "email_server_server_web_ui_routes", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models", "to": "email_server_server_web_ui_senders", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models", "to": "email_server_server_web_ui_view_message", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models", "to": "email_server_smtp_handler", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_domain", "to": "base", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_domain", "to": "email_server_models_domain_repr", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_domain", "to": "email_server_models_rationale_32", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_domain", "to": "email_server_server_runner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_domain", "to": "email_server_server_runner_start_server", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_domain", "to": "email_server_server_web_ui_dashboard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_domain", "to": "email_server_server_web_ui_dkim", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_domain", "to": "email_server_server_web_ui_domains", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_domain", "to": "email_server_server_web_ui_domains_add_domain", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_domain", "to": "email_server_server_web_ui_ip_whitelist", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_domain", "to": "email_server_server_web_ui_senders", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "base", "to": "email_server_models_authlog", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "base", "to": "email_server_models_customheader", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "base", "to": "email_server_models_dkimkey", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "base", "to": "email_server_models_emailattachment", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "base", "to": "email_server_models_emaillog", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "base", "to": "email_server_models_emailrecipientlog", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "base", "to": "email_server_models_sender", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "base", "to": "email_server_models_whitelistedip", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_sender", "to": "email_server_models_rationale_50", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_sender", "to": "email_server_models_sender_can_send_as", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_sender", "to": "email_server_models_sender_repr", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_sender", "to": "email_server_server_runner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_sender", "to": "email_server_server_runner_start_server", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_sender", "to": "email_server_server_web_ui_dashboard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_sender", "to": "email_server_server_web_ui_domains", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_sender", "to": "email_server_server_web_ui_senders", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_sender", "to": "email_server_server_web_ui_senders_add_sender", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_sender_can_send_as", "to": "email_server_models_rationale_69", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_whitelistedip", "to": "email_server_models_rationale_91", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_whitelistedip", "to": "email_server_models_whitelistedip_can_send_for_domain", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_whitelistedip", "to": "email_server_models_whitelistedip_repr", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_whitelistedip", "to": "email_server_server_runner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_whitelistedip", "to": "email_server_server_runner_start_server", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_whitelistedip", "to": "email_server_server_web_ui_domains", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_whitelistedip", "to": "email_server_server_web_ui_ip_whitelist", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_whitelistedip", "to": "email_server_server_web_ui_ip_whitelist_add_ip", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_whitelistedip_can_send_for_domain", "to": "email_server_models_rationale_107", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_emaillog", "to": "email_server_models_emaillog_repr", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_emaillog", "to": "email_server_models_log_email", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_emaillog", "to": "email_server_models_rationale_134", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_emaillog", "to": "email_server_server_web_ui_dashboard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_emaillog", "to": "email_server_server_web_ui_logs", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_emaillog", "to": "email_server_server_web_ui_routes", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_emaillog", "to": "email_server_server_web_ui_view_message", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_emaillog", "to": "email_server_smtp_handler", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_emaillog", "to": "email_server_smtp_handler_customsmtp", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "email_server_models_emaillog", "to": "email_server_smtp_handler_enhancedcombinedauthenticator", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "email_server_models_emaillog", "to": "email_server_smtp_handler_enhancedcustomsmtphandler", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "email_server_models_emaillog", "to": "email_server_smtp_handler_plaincontroller", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "email_server_models_emaillog", "to": "email_server_smtp_handler_tlscontroller", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "email_server_models_emailrecipientlog", "to": "email_server_models_emailrecipientlog_repr", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_emailrecipientlog", "to": "email_server_models_rationale_160", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_emailrecipientlog", "to": "email_server_server_web_ui_dashboard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_emailrecipientlog", "to": "email_server_server_web_ui_logs", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_authlog", "to": "email_server_models_authlog_repr", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_authlog", "to": "email_server_models_log_auth_attempt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_authlog", "to": "email_server_models_rationale_178", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_authlog", "to": "email_server_server_web_ui_dashboard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_authlog", "to": "email_server_server_web_ui_logs", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_authlog", "to": "email_server_server_web_ui_routes", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_dkimkey", "to": "email_server_models_dkimkey_repr", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_dkimkey", "to": "email_server_models_rationale_193", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_dkimkey", "to": "email_server_server_web_ui_dashboard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_dkimkey", "to": "email_server_server_web_ui_dkim", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_dkimkey", "to": "email_server_server_web_ui_domains", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_customheader", "to": "email_server_models_customheader_repr", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_customheader", "to": "email_server_models_rationale_209", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_customheader", "to": "email_server_server_web_ui_domains", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_emailattachment", "to": "email_server_models_emailattachment_repr", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_emailattachment", "to": "email_server_models_rationale_223", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_emailattachment", "to": "email_server_server_web_ui_logs", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_emailattachment", "to": "email_server_server_web_ui_view_message", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_emailattachment", "to": "email_server_smtp_handler", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_emailattachment", "to": "email_server_smtp_handler_customsmtp", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "email_server_models_emailattachment", "to": "email_server_smtp_handler_enhancedcombinedauthenticator", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "email_server_models_emailattachment", "to": "email_server_smtp_handler_enhancedcustomsmtphandler", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "email_server_models_emailattachment", "to": "email_server_smtp_handler_enhancedcustomsmtphandler_handle_data", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_emailattachment", "to": "email_server_smtp_handler_plaincontroller", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "email_server_models_emailattachment", "to": "email_server_smtp_handler_tlscontroller", "label": "uses", "title": "uses [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "email_server_models_create_tables", "to": "email_server_models_rationale_241", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_create_tables", "to": "email_server_server_runner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_create_tables", "to": "email_server_server_runner_start_server", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_hash_password", "to": "email_server_models_rationale_246", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_hash_password", "to": "email_server_server_runner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_hash_password", "to": "email_server_server_runner_start_server", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_hash_password", "to": "email_server_server_web_ui_senders", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_hash_password", "to": "email_server_server_web_ui_senders_add_sender", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_hash_password", "to": "email_server_server_web_ui_senders_edit_sender", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_check_password", "to": "email_server_models_rationale_250", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_log_auth_attempt", "to": "email_server_models_rationale_255", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_log_email", "to": "email_server_models_rationale_285", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_get_sender_by_email", "to": "email_server_models_rationale_314", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_get_sender_by_email", "to": "email_server_smtp_handler", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_get_sender_by_email", "to": "email_server_smtp_handler_enhancedcustomsmtphandler_handle_data", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_get_whitelisted_ip", "to": "email_server_models_rationale_330", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_get_whitelisted_ip", "to": "email_server_smtp_handler", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_models_get_whitelisted_ip", "to": "email_server_smtp_handler_enhancedcustomsmtphandler_handle_data", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_runner", "to": "email_server_server_runner_start_server", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_runner", "to": "email_server_settings_loader", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_runner", "to": "email_server_settings_loader_load_settings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_runner", "to": "email_server_smtp_handler", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_runner", "to": "email_server_smtp_handler_enhancedcustomsmtphandler", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_runner", "to": "email_server_smtp_handler_plaincontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_runner", "to": "email_server_smtp_handler_tlscontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_runner", "to": "email_server_tls_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_runner", "to": "email_server_tls_utils_create_ssl_context", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_runner", "to": "email_server_tls_utils_generate_self_signed_cert", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_runner", "to": "email_server_tool_box", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_runner", "to": "email_server_tool_box_get_logger", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_runner", "to": "email_server_server_runner_rationale_1", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_runner_start_server", "to": "email_server_server_runner_rationale_36", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_runner_start_server", "to": "email_server_smtp_handler_enhancedcustomsmtphandler", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_runner_start_server", "to": "email_server_smtp_handler_plaincontroller", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_runner_start_server", "to": "email_server_smtp_handler_tlscontroller", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_runner_start_server", "to": "email_server_tls_utils_create_ssl_context", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_runner_start_server", "to": "email_server_tls_utils_generate_self_signed_cert", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_init", "to": "email_server_server_web_ui_dashboard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_init", "to": "email_server_server_web_ui_dkim", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_init", "to": "email_server_server_web_ui_domains", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_init", "to": "email_server_server_web_ui_ip_whitelist", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_init", "to": "email_server_server_web_ui_logs", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_init", "to": "email_server_server_web_ui_routes", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_init", "to": "email_server_server_web_ui_senders", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_init", "to": "email_server_server_web_ui_settings", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_init", "to": "email_server_server_web_ui_view_message", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_init", "to": "email_server_server_web_ui_init_rationale_1", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dashboard", "to": "email_server_server_web_ui_dashboard_dashboard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dashboard", "to": "email_server_server_web_ui_routes", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dashboard", "to": "email_server_tool_box", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dashboard", "to": "email_server_tool_box_get_logger", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dashboard", "to": "email_server_server_web_ui_dashboard_rationale_1", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dashboard_py_route", "to": "email_server_server_web_ui_dashboard_dashboard", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dashboard_dashboard", "to": "email_server_server_web_ui_dashboard_rationale_17", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_database", "to": "email_server_server_web_ui_database_import_or_install_driver", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_database", "to": "email_server_server_web_ui_database_install_package", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_database", "to": "email_server_server_web_ui_database_test_database_connection", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_database", "to": "email_server_tool_box", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_database", "to": "email_server_tool_box_get_logger", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_database", "to": "email_server_server_web_ui_database_rationale_1", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_database", "to": "email_server_server_web_ui_settings", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_database_install_package", "to": "email_server_server_web_ui_database_import_or_install_driver", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_database_install_package", "to": "email_server_server_web_ui_database_rationale_32", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_database_import_or_install_driver", "to": "email_server_server_web_ui_database_rationale_50", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_database_import_or_install_driver", "to": "email_server_server_web_ui_database_test_database_connection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_database_test_database_connection", "to": "email_server_server_web_ui_database_rationale_79", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_database_test_database_connection", "to": "email_server_server_web_ui_settings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_database_test_database_connection", "to": "email_server_server_web_ui_settings_test_database_connection_endpoint", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim", "to": "email_server_server_web_ui_dkim_check_dkim_dns", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim", "to": "email_server_server_web_ui_dkim_check_spf_dns", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim", "to": "email_server_server_web_ui_dkim_create_dkim", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim", "to": "email_server_server_web_ui_dkim_dkim_list", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim", "to": "email_server_server_web_ui_dkim_edit_dkim", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim", "to": "email_server_server_web_ui_dkim_regenerate_dkim", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim", "to": "email_server_server_web_ui_dkim_remove_dkim", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim", "to": "email_server_server_web_ui_dkim_toggle_dkim", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim", "to": "email_server_server_web_ui_routes", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim", "to": "email_server_server_web_ui_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim", "to": "email_server_server_web_ui_utils_check_dns_record", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim", "to": "email_server_server_web_ui_utils_generate_spf_record", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim", "to": "email_server_server_web_ui_utils_get_public_ip", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim", "to": "email_server_tool_box", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim", "to": "email_server_tool_box_get_current_time", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim", "to": "email_server_tool_box_get_logger", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim", "to": "email_server_server_web_ui_dkim_rationale_1", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim_py_route", "to": "email_server_server_web_ui_dkim_check_dkim_dns", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim_py_route", "to": "email_server_server_web_ui_dkim_check_spf_dns", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim_py_route", "to": "email_server_server_web_ui_dkim_create_dkim", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim_py_route", "to": "email_server_server_web_ui_dkim_dkim_list", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim_py_route", "to": "email_server_server_web_ui_dkim_edit_dkim", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim_py_route", "to": "email_server_server_web_ui_dkim_regenerate_dkim", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim_py_route", "to": "email_server_server_web_ui_dkim_remove_dkim", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim_py_route", "to": "email_server_server_web_ui_dkim_toggle_dkim", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim_dkim_list", "to": "email_server_server_web_ui_utils_check_dns_record", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim_dkim_list", "to": "email_server_server_web_ui_utils_generate_spf_record", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim_dkim_list", "to": "email_server_server_web_ui_utils_get_public_ip", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim_dkim_list", "to": "email_server_server_web_ui_dkim_rationale_26", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim_create_dkim", "to": "email_server_tool_box_get_current_time", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim_create_dkim", "to": "email_server_server_web_ui_dkim_rationale_94", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim_regenerate_dkim", "to": "email_server_server_web_ui_dkim_rationale_129", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim_regenerate_dkim", "to": "email_server_server_web_ui_utils_check_dns_record", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim_regenerate_dkim", "to": "email_server_server_web_ui_utils_generate_spf_record", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim_regenerate_dkim", "to": "email_server_server_web_ui_utils_get_public_ip", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim_regenerate_dkim", "to": "email_server_tool_box_get_current_time", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim_edit_dkim", "to": "email_server_server_web_ui_dkim_rationale_260", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim_toggle_dkim", "to": "email_server_server_web_ui_dkim_rationale_312", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim_toggle_dkim", "to": "email_server_tool_box_get_current_time", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim_remove_dkim", "to": "email_server_server_web_ui_dkim_rationale_364", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim_check_dkim_dns", "to": "email_server_server_web_ui_utils_check_dns_record", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim_check_dkim_dns", "to": "email_server_server_web_ui_dkim_rationale_392", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim_check_spf_dns", "to": "email_server_server_web_ui_utils_check_dns_record", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim_check_spf_dns", "to": "email_server_server_web_ui_utils_get_public_ip", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_dkim_check_spf_dns", "to": "email_server_server_web_ui_dkim_rationale_419", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_domains", "to": "email_server_server_web_ui_domains_add_domain", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_domains", "to": "email_server_server_web_ui_domains_delete_domain", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_domains", "to": "email_server_server_web_ui_domains_domains_list", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_domains", "to": "email_server_server_web_ui_domains_edit_domain", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_domains", "to": "email_server_server_web_ui_domains_remove_domain", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_domains", "to": "email_server_server_web_ui_domains_toggle_domain", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_domains", "to": "email_server_server_web_ui_routes", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_domains", "to": "email_server_tool_box", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_domains", "to": "email_server_tool_box_get_logger", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_domains", "to": "email_server_server_web_ui_domains_rationale_1", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_domains_py_route", "to": "email_server_server_web_ui_domains_add_domain", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_domains_py_route", "to": "email_server_server_web_ui_domains_delete_domain", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_domains_py_route", "to": "email_server_server_web_ui_domains_domains_list", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_domains_py_route", "to": "email_server_server_web_ui_domains_edit_domain", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_domains_py_route", "to": "email_server_server_web_ui_domains_remove_domain", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_domains_py_route", "to": "email_server_server_web_ui_domains_toggle_domain", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_domains_delete_domain", "to": "email_server_server_web_ui_domains_rationale_79", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_domains_toggle_domain", "to": "email_server_server_web_ui_domains_rationale_154", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_domains_remove_domain", "to": "email_server_server_web_ui_domains_rationale_180", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_ip_whitelist", "to": "email_server_server_web_ui_ip_whitelist_add_ip", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_ip_whitelist", "to": "email_server_server_web_ui_ip_whitelist_disable_ip", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_ip_whitelist", "to": "email_server_server_web_ui_ip_whitelist_edit_ip", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_ip_whitelist", "to": "email_server_server_web_ui_ip_whitelist_enable_ip", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_ip_whitelist", "to": "email_server_server_web_ui_ip_whitelist_ips_list", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_ip_whitelist", "to": "email_server_server_web_ui_ip_whitelist_remove_ip", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_ip_whitelist", "to": "email_server_server_web_ui_routes", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_ip_whitelist", "to": "email_server_tool_box", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_ip_whitelist", "to": "email_server_tool_box_get_logger", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_ip_whitelist", "to": "email_server_server_web_ui_ip_whitelist_rationale_1", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_ip_whitelist_py_route", "to": "email_server_server_web_ui_ip_whitelist_add_ip", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_ip_whitelist_py_route", "to": "email_server_server_web_ui_ip_whitelist_disable_ip", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_ip_whitelist_py_route", "to": "email_server_server_web_ui_ip_whitelist_edit_ip", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_ip_whitelist_py_route", "to": "email_server_server_web_ui_ip_whitelist_enable_ip", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_ip_whitelist_py_route", "to": "email_server_server_web_ui_ip_whitelist_ips_list", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_ip_whitelist_py_route", "to": "email_server_server_web_ui_ip_whitelist_remove_ip", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_ip_whitelist_ips_list", "to": "email_server_server_web_ui_ip_whitelist_rationale_22", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_ip_whitelist_add_ip", "to": "email_server_server_web_ui_ip_whitelist_rationale_32", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_ip_whitelist_disable_ip", "to": "email_server_server_web_ui_ip_whitelist_rationale_83", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_ip_whitelist_enable_ip", "to": "email_server_server_web_ui_ip_whitelist_rationale_108", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_ip_whitelist_remove_ip", "to": "email_server_server_web_ui_ip_whitelist_rationale_133", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_logs", "to": "email_server_server_web_ui_logs_logs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_logs", "to": "email_server_server_web_ui_routes", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_logs", "to": "email_server_tool_box", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_logs", "to": "email_server_tool_box_get_logger", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_logs", "to": "email_server_server_web_ui_logs_rationale_1", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_logs_py_route", "to": "email_server_server_web_ui_logs_logs", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_logs_logs", "to": "email_server_server_web_ui_logs_rationale_18", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_routes", "to": "email_server_server_web_ui_routes_format_datetime", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_routes", "to": "email_server_server_web_ui_routes_internal_error", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_routes", "to": "email_server_server_web_ui_routes_not_found", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_routes", "to": "email_server_server_web_ui_view_message", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_routes", "to": "email_server_settings_loader", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_routes", "to": "email_server_settings_loader_load_settings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_routes", "to": "email_server_tool_box", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_routes", "to": "email_server_tool_box_get_current_time", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_routes", "to": "email_server_tool_box_get_logger", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_routes", "to": "email_server_server_web_ui_routes_rationale_1", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_routes", "to": "email_server_server_web_ui_senders", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_routes", "to": "email_server_server_web_ui_settings", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_template_filter", "to": "email_server_server_web_ui_routes_format_datetime", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_routes_format_datetime", "to": "email_server_settings_loader_load_settings", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_routes_format_datetime", "to": "email_server_server_web_ui_routes_rationale_27", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "errorhandler", "to": "email_server_server_web_ui_routes_internal_error", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "errorhandler", "to": "email_server_server_web_ui_routes_not_found", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_routes_not_found", "to": "email_server_tool_box_get_current_time", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_routes_internal_error", "to": "email_server_tool_box_get_current_time", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_senders", "to": "email_server_server_web_ui_senders_add_sender", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_senders", "to": "email_server_server_web_ui_senders_delete_sender", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_senders", "to": "email_server_server_web_ui_senders_edit_sender", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_senders", "to": "email_server_server_web_ui_senders_enable_sender", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_senders", "to": "email_server_server_web_ui_senders_remove_sender", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_senders", "to": "email_server_server_web_ui_senders_senders_list", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_senders", "to": "email_server_tool_box", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_senders", "to": "email_server_tool_box_get_logger", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_senders", "to": "email_server_server_web_ui_senders_rationale_1", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_senders_py_route", "to": "email_server_server_web_ui_senders_add_sender", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_senders_py_route", "to": "email_server_server_web_ui_senders_delete_sender", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_senders_py_route", "to": "email_server_server_web_ui_senders_edit_sender", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_senders_py_route", "to": "email_server_server_web_ui_senders_enable_sender", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_senders_py_route", "to": "email_server_server_web_ui_senders_remove_sender", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_senders_py_route", "to": "email_server_server_web_ui_senders_senders_list", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_senders_delete_sender", "to": "email_server_server_web_ui_senders_rationale_86", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_senders_remove_sender", "to": "email_server_server_web_ui_senders_rationale_136", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_settings", "to": "email_server_server_web_ui_settings_allowed_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_settings", "to": "email_server_server_web_ui_settings_get_available_timezones", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_settings", "to": "email_server_server_web_ui_settings_get_server_ip", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_settings", "to": "email_server_server_web_ui_settings_get_template_context", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_settings", "to": "email_server_server_web_ui_settings_settings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_settings", "to": "email_server_server_web_ui_settings_settings_update", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_settings", "to": "email_server_server_web_ui_settings_test_attachments_path", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_settings", "to": "email_server_server_web_ui_settings_test_database_connection_endpoint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_settings", "to": "email_server_server_web_ui_settings_upload_cert", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_settings", "to": "email_server_server_web_ui_settings_upload_key", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_settings", "to": "email_server_server_web_ui_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_settings", "to": "email_server_server_web_ui_utils_get_public_ip", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_settings", "to": "email_server_settings_loader", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_settings", "to": "email_server_settings_loader_load_settings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_settings", "to": "email_server_tool_box", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_settings", "to": "email_server_tool_box_get_logger", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_settings", "to": "email_server_server_web_ui_settings_rationale_1", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_settings_allowed_file", "to": "email_server_server_web_ui_settings_upload_cert", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_settings_allowed_file", "to": "email_server_server_web_ui_settings_upload_key", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_settings_get_template_context", "to": "email_server_server_web_ui_settings_get_available_timezones", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_settings_get_template_context", "to": "email_server_settings_loader_load_settings", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_settings_get_template_context", "to": "email_server_server_web_ui_settings_rationale_34", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_settings_get_template_context", "to": "email_server_server_web_ui_settings_settings", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_settings_py_route", "to": "email_server_server_web_ui_settings_get_server_ip", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_settings_py_route", "to": "email_server_server_web_ui_settings_settings", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_settings_py_route", "to": "email_server_server_web_ui_settings_settings_update", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_settings_py_route", "to": "email_server_server_web_ui_settings_test_attachments_path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_settings_py_route", "to": "email_server_server_web_ui_settings_test_database_connection_endpoint", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_settings_py_route", "to": "email_server_server_web_ui_settings_upload_cert", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_settings_py_route", "to": "email_server_server_web_ui_settings_upload_key", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_settings_settings", "to": "email_server_server_web_ui_settings_rationale_46", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_settings_settings_update", "to": "email_server_server_web_ui_settings_rationale_51", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_settings_settings_update", "to": "email_server_settings_loader_load_settings", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_settings_test_database_connection_endpoint", "to": "email_server_server_web_ui_settings_rationale_128", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_settings_upload_cert", "to": "email_server_server_web_ui_settings_rationale_145", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_settings_upload_key", "to": "email_server_server_web_ui_settings_rationale_172", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_settings_get_server_ip", "to": "email_server_server_web_ui_utils_get_public_ip", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_settings_get_server_ip", "to": "email_server_server_web_ui_settings_rationale_199", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_settings_test_attachments_path", "to": "email_server_server_web_ui_settings_rationale_212", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_settings_get_available_timezones", "to": "email_server_server_web_ui_settings_rationale_244", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_static_js_dkim_management", "to": "email_server_server_web_ui_static_js_dkim_management_dkimmanagement", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_static_js_smtp_management", "to": "email_server_server_web_ui_static_js_smtp_management_dnsverification", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_static_js_smtp_management", "to": "email_server_server_web_ui_static_js_smtp_management_formvalidation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_static_js_smtp_management", "to": "email_server_server_web_ui_static_js_smtp_management_smtpmanagement", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_utils", "to": "email_server_server_web_ui_utils_check_dns_record", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_utils", "to": "email_server_server_web_ui_utils_generate_spf_record", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_utils", "to": "email_server_server_web_ui_utils_get_public_ip", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_utils", "to": "email_server_settings_loader", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_utils", "to": "email_server_settings_loader_load_settings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_utils", "to": "email_server_server_web_ui_utils_rationale_1", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_utils_get_public_ip", "to": "email_server_settings_loader_load_settings", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_utils_get_public_ip", "to": "email_server_server_web_ui_utils_rationale_17", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_utils_check_dns_record", "to": "email_server_server_web_ui_utils_rationale_49", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_utils_generate_spf_record", "to": "email_server_server_web_ui_utils_rationale_139", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_view_message", "to": "email_server_server_web_ui_view_message_delete_attachment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_view_message", "to": "email_server_server_web_ui_view_message_download_attachment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_view_message", "to": "email_server_server_web_ui_view_message_view_message_content", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_view_message", "to": "email_server_tool_box", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_view_message", "to": "email_server_tool_box_get_logger", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_view_message", "to": "email_server_server_web_ui_view_message_rationale_1", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_view_message_py_route", "to": "email_server_server_web_ui_view_message_delete_attachment", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_view_message_py_route", "to": "email_server_server_web_ui_view_message_download_attachment", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_view_message_py_route", "to": "email_server_server_web_ui_view_message_view_message_content", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_view_message_view_message_content", "to": "email_server_server_web_ui_view_message_rationale_14", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_settings_loader", "to": "configparser", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_settings_loader", "to": "email_server_settings_loader_generate_settings_ini", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_settings_loader", "to": "email_server_settings_loader_load_settings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_settings_loader", "to": "email_server_settings_loader_rationale_1", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_settings_loader", "to": "email_server_smtp_handler", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_settings_loader", "to": "email_server_tls_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_settings_loader", "to": "email_server_tool_box", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_settings_loader_generate_settings_ini", "to": "configparser", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_settings_loader_generate_settings_ini", "to": "path", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_settings_loader_generate_settings_ini", "to": "email_server_settings_loader_load_settings", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_settings_loader_generate_settings_ini", "to": "email_server_settings_loader_rationale_60", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "path", "to": "email_server_settings_loader_load_settings", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_settings_loader_load_settings", "to": "configparser", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_settings_loader_load_settings", "to": "email_server_settings_loader_rationale_77", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_settings_loader_load_settings", "to": "email_server_smtp_handler", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_settings_loader_load_settings", "to": "email_server_tls_utils", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_settings_loader_load_settings", "to": "email_server_tool_box", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler", "to": "email_server_smtp_handler_customsmtp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler", "to": "email_server_smtp_handler_enhancedcombinedauthenticator", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler", "to": "email_server_smtp_handler_enhancedcustomsmtphandler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler", "to": "email_server_smtp_handler_plaincontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler", "to": "email_server_smtp_handler_tlscontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler", "to": "email_server_tool_box", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler", "to": "email_server_tool_box_ensure_folder_exists", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler", "to": "email_server_tool_box_generate_message_id", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler", "to": "email_server_tool_box_get_current_time", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler", "to": "email_server_tool_box_get_logger", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler", "to": "email_server_smtp_handler_rationale_1", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler_customsmtp", "to": "aiosmtp", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler_customsmtp", "to": "email_server_smtp_handler_customsmtp_get_auth_methods", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler_customsmtp", "to": "email_server_smtp_handler_customsmtp_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler_customsmtp", "to": "email_server_smtp_handler_customsmtp_smtp_auth", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler_customsmtp", "to": "email_server_smtp_handler_plaincontroller_factory", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler_customsmtp", "to": "email_server_smtp_handler_rationale_31", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler_customsmtp", "to": "email_server_smtp_handler_tlscontroller_factory", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler_customsmtp_init", "to": "email_server_smtp_handler_plaincontroller_init", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler_customsmtp_smtp_auth", "to": "email_server_smtp_handler_rationale_54", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler_enhancedcombinedauthenticator", "to": "email_server_smtp_handler_enhancedcombinedauthenticator_call", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler_enhancedcombinedauthenticator", "to": "email_server_smtp_handler_enhancedcombinedauthenticator_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler_enhancedcombinedauthenticator", "to": "email_server_smtp_handler_enhancedcustomsmtphandler_init", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler_enhancedcombinedauthenticator", "to": "email_server_smtp_handler_rationale_65", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler_enhancedcustomsmtphandler", "to": "email_server_smtp_handler_enhancedcustomsmtphandler_ensure_required_headers", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler_enhancedcustomsmtphandler", "to": "email_server_smtp_handler_enhancedcustomsmtphandler_get_attachment_storage_path", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler_enhancedcustomsmtphandler", "to": "email_server_smtp_handler_enhancedcustomsmtphandler_get_content_type", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler_enhancedcustomsmtphandler", "to": "email_server_smtp_handler_enhancedcustomsmtphandler_handle_data", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler_enhancedcustomsmtphandler", "to": "email_server_smtp_handler_enhancedcustomsmtphandler_handle_mail", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler_enhancedcustomsmtphandler", "to": "email_server_smtp_handler_enhancedcustomsmtphandler_handle_rcpt", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler_enhancedcustomsmtphandler", "to": "email_server_smtp_handler_enhancedcustomsmtphandler_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler_enhancedcustomsmtphandler", "to": "email_server_smtp_handler_rationale_94", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler_enhancedcustomsmtphandler_ensure_required_headers", "to": "email_server_tool_box_generate_message_id", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler_enhancedcustomsmtphandler_ensure_required_headers", "to": "email_server_smtp_handler_enhancedcustomsmtphandler_handle_data", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler_enhancedcustomsmtphandler_ensure_required_headers", "to": "email_server_smtp_handler_rationale_106", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler_enhancedcustomsmtphandler_handle_data", "to": "email_server_smtp_handler_enhancedcustomsmtphandler_get_attachment_storage_path", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler_enhancedcustomsmtphandler_handle_data", "to": "email_server_smtp_handler_enhancedcustomsmtphandler_get_content_type", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler_enhancedcustomsmtphandler_handle_data", "to": "email_server_tool_box_ensure_folder_exists", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler_enhancedcustomsmtphandler_handle_data", "to": "email_server_smtp_handler_rationale_251", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler_enhancedcustomsmtphandler_handle_rcpt", "to": "email_server_smtp_handler_rationale_584", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler_enhancedcustomsmtphandler_handle_mail", "to": "email_server_smtp_handler_rationale_590", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler_enhancedcustomsmtphandler_get_attachment_storage_path", "to": "email_server_tool_box_get_current_time", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler_enhancedcustomsmtphandler_get_attachment_storage_path", "to": "email_server_smtp_handler_rationale_612", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler_enhancedcustomsmtphandler_get_content_type", "to": "email_server_smtp_handler_rationale_649", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler_tlscontroller", "to": "email_server_smtp_handler_rationale_680", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler_tlscontroller", "to": "controller", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler_tlscontroller", "to": "email_server_smtp_handler_tlscontroller_factory", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler_tlscontroller", "to": "email_server_smtp_handler_tlscontroller_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "controller", "to": "email_server_smtp_handler_plaincontroller", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler_tlscontroller_init", "to": "email_server_smtp_handler_plaincontroller_init", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler_plaincontroller", "to": "email_server_smtp_handler_plaincontroller_factory", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler_plaincontroller", "to": "email_server_smtp_handler_plaincontroller_init", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_smtp_handler_plaincontroller", "to": "email_server_smtp_handler_rationale_708", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_tls_utils", "to": "email_server_tls_utils_create_ssl_context", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_tls_utils", "to": "email_server_tls_utils_generate_self_signed_cert", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_tls_utils", "to": "email_server_tool_box", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_tls_utils", "to": "email_server_tool_box_ensure_folder_exists", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_tls_utils", "to": "email_server_tool_box_get_logger", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_tls_utils", "to": "email_server_tls_utils_rationale_1", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_tls_utils_generate_self_signed_cert", "to": "email_server_tls_utils_rationale_21", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_tls_utils_create_ssl_context", "to": "email_server_tls_utils_rationale_61", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_tool_box", "to": "email_server_tool_box_ensure_folder_exists", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_tool_box", "to": "email_server_tool_box_generate_message_id", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_tool_box", "to": "email_server_tool_box_get_current_time", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_tool_box", "to": "email_server_tool_box_get_logger", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_tool_box", "to": "email_server_tool_box_setup_logging", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_tool_box", "to": "email_server_tool_box_rationale_1", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_tool_box_ensure_folder_exists", "to": "email_server_tool_box_rationale_17", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_tool_box_setup_logging", "to": "email_server_tool_box_get_logger", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_tool_box_setup_logging", "to": "email_server_tool_box_rationale_27", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_tool_box_get_logger", "to": "email_server_tool_box_rationale_46", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_tool_box_get_current_time", "to": "email_server_tool_box_rationale_67", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_tool_box_generate_message_id", "to": "email_server_tool_box_rationale_72", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "script_install_service", "to": "script_install_service_remove_system_services", "label": "defines", "title": "defines [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "script_install_service", "to": "script_install_service_remove_user_services", "label": "defines", "title": "defines [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "script_install_service", "to": "script_install_service_sh__entry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "script_install_service", "to": "script_install_service_usage", "label": "defines", "title": "defines [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "script_install_service", "to": "script_install_service_write_system_services", "label": "defines", "title": "defines [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "script_install_service", "to": "script_install_service_write_user_services", "label": "defines", "title": "defines [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "script_install_service_sh__entry", "to": "script_install_service_remove_system_services", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "script_install_service_sh__entry", "to": "script_install_service_remove_user_services", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "script_install_service_sh__entry", "to": "script_install_service_usage", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "script_install_service_sh__entry", "to": "script_install_service_write_system_services", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "script_install_service_sh__entry", "to": "script_install_service_write_user_services", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "script_nginx_setup", "to": "script_nginx_setup_error_messages", "label": "defines", "title": "defines [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "script_nginx_setup", "to": "script_nginx_setup_sh__entry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "script_setup_py_environment", "to": "script_setup_py_environment_sh__entry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_bash_send_email", "to": "tests_bash_send_email_sh__entry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_send_email", "to": "tests_send_email_send_test_email", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_send_email", "to": "tests_send_email_send_test_email_tls", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_send_email_send_test_email", "to": "tests_send_email_rationale_19", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_send_email_send_test_email_tls", "to": "tests_send_email_rationale_37", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_add_domain_page", "to": "email_server_server_web_ui_templates_base_page", "label": "implements", "title": "implements [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_add_domain_page", "to": "email_server_server_web_ui_templates_domains_domain_model", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_add_domain_page", "to": "email_server_server_web_ui_templates_domains_page", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_add_domain_page", "to": "email_server_server_web_ui_templates_dashboard_page", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_add_domain_page", "to": "email_server_server_web_ui_templates_dkim_page", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_add_ip_page", "to": "email_server_server_web_ui_templates_base_page", "label": "implements", "title": "implements [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_add_ip_page", "to": "email_server_server_web_ui_templates_domains_domain_model", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_add_ip_page", "to": "email_server_server_web_ui_templates_ips_ip_whitelist_model", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_add_ip_page", "to": "email_server_server_web_ui_templates_ips_page", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_add_ip_page", "to": "email_server_server_web_ui_templates_dashboard_page", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_add_sender_page", "to": "email_server_server_web_ui_templates_base_page", "label": "implements", "title": "implements [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_add_sender_page", "to": "email_server_server_web_ui_templates_domains_domain_model", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_add_sender_page", "to": "email_server_server_web_ui_templates_senders_page", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_add_sender_page", "to": "email_server_server_web_ui_templates_senders_sender_model", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_add_sender_page", "to": "email_server_server_web_ui_templates_dashboard_page", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_base_page", "to": "email_server_server_web_ui_templates_sidebar_email_partial", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_base_page", "to": "email_server_server_web_ui_templates_dashboard_page", "label": "implements", "title": "implements [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_base_page", "to": "email_server_server_web_ui_templates_dkim_page", "label": "implements", "title": "implements [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_base_page", "to": "email_server_server_web_ui_templates_domains_page", "label": "implements", "title": "implements [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_base_page", "to": "email_server_server_web_ui_templates_edit_dkim_page", "label": "implements", "title": "implements [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_base_page", "to": "email_server_server_web_ui_templates_edit_domain_page", "label": "implements", "title": "implements [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_base_page", "to": "email_server_server_web_ui_templates_edit_ip_page", "label": "implements", "title": "implements [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_base_page", "to": "email_server_server_web_ui_templates_edit_sender_page", "label": "implements", "title": "implements [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_base_page", "to": "email_server_server_web_ui_templates_error_page", "label": "implements", "title": "implements [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_base_page", "to": "email_server_server_web_ui_templates_ips_page", "label": "implements", "title": "implements [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_base_page", "to": "email_server_server_web_ui_templates_logs_page", "label": "implements", "title": "implements [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_base_page", "to": "email_server_server_web_ui_templates_senders_page", "label": "implements", "title": "implements [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_base_page", "to": "email_server_server_web_ui_templates_settings_page", "label": "implements", "title": "implements [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_base_page", "to": "email_server_server_web_ui_templates_view_message_content_page", "label": "implements", "title": "implements [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_dashboard_page", "to": "email_server_server_web_ui_templates_base_health_check_concept", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_dashboard_page", "to": "email_server_server_web_ui_templates_dkim_dkim_key_model", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_dashboard_page", "to": "email_server_server_web_ui_templates_dkim_page", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_dashboard_page", "to": "email_server_server_web_ui_templates_domains_domain_model", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_dashboard_page", "to": "email_server_server_web_ui_templates_domains_page", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_dashboard_page", "to": "email_server_server_web_ui_templates_logs_auth_log_model", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_dashboard_page", "to": "email_server_server_web_ui_templates_logs_email_log_model", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_dashboard_page", "to": "email_server_server_web_ui_templates_logs_page", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_dashboard_page", "to": "email_server_server_web_ui_templates_senders_page", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_dashboard_page", "to": "email_server_server_web_ui_templates_senders_sender_model", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_dashboard_page", "to": "email_server_server_web_ui_templates_settings_page", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_dashboard_page", "to": "email_server_server_web_ui_templates_error_page", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_dashboard_page", "to": "email_server_server_web_ui_templates_sidebar_email_partial", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_dkim_page", "to": "email_server_server_web_ui_templates_dkim_dkim_key_model", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_dkim_page", "to": "email_server_server_web_ui_templates_domains_domain_model", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_dkim_page", "to": "email_server_server_web_ui_templates_edit_dkim_page", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_dkim_page", "to": "email_server_server_web_ui_templates_sidebar_email_partial", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_domains_page", "to": "email_server_server_web_ui_templates_dkim_dkim_key_model", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_domains_page", "to": "email_server_server_web_ui_templates_domains_domain_model", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_domains_page", "to": "email_server_server_web_ui_templates_edit_domain_page", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_domains_page", "to": "email_server_server_web_ui_templates_sidebar_email_partial", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_edit_dkim_page", "to": "email_server_server_web_ui_templates_dkim_dkim_key_model", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_edit_dkim_page", "to": "email_server_server_web_ui_templates_domains_domain_model", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_edit_domain_page", "to": "email_server_server_web_ui_templates_domains_domain_model", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_edit_domain_page", "to": "email_server_server_web_ui_templates_sidebar_email_partial", "label": "references", "title": "references [AMBIGUOUS]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AMBIGUOUS"}, {"from": "email_server_server_web_ui_templates_edit_ip_page", "to": "email_server_server_web_ui_templates_domains_domain_model", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_edit_ip_page", "to": "email_server_server_web_ui_templates_ips_ip_whitelist_model", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_edit_ip_page", "to": "email_server_server_web_ui_templates_ips_page", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_edit_sender_page", "to": "email_server_server_web_ui_templates_domains_domain_model", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_edit_sender_page", "to": "email_server_server_web_ui_templates_senders_page", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_edit_sender_page", "to": "email_server_server_web_ui_templates_senders_sender_model", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_ips_page", "to": "email_server_server_web_ui_templates_domains_domain_model", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_ips_page", "to": "email_server_server_web_ui_templates_ips_ip_whitelist_model", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_ips_page", "to": "email_server_server_web_ui_templates_sidebar_email_partial", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_logs_page", "to": "email_server_server_web_ui_templates_logs_auth_log_model", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_logs_page", "to": "email_server_server_web_ui_templates_logs_email_log_model", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_logs_page", "to": "email_server_server_web_ui_templates_view_message_content_page", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_logs_page", "to": "email_server_server_web_ui_templates_sidebar_email_partial", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_senders_page", "to": "email_server_server_web_ui_templates_domains_domain_model", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_senders_page", "to": "email_server_server_web_ui_templates_senders_sender_model", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_senders_page", "to": "email_server_server_web_ui_templates_sidebar_email_partial", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_settings_page", "to": "email_server_server_web_ui_templates_settings_server_settings_model", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_settings_page", "to": "email_server_server_web_ui_templates_sidebar_email_partial", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_sidebar_email_partial", "to": "email_server_server_web_ui_templates_base_health_check_concept", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_sidebar_email_partial", "to": "email_server_server_web_ui_templates_dkim_dkim_key_model", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_sidebar_email_partial", "to": "email_server_server_web_ui_templates_domains_domain_model", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_sidebar_email_partial", "to": "email_server_server_web_ui_templates_ips_ip_whitelist_model", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_sidebar_email_partial", "to": "email_server_server_web_ui_templates_senders_sender_model", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_view_message_content_page", "to": "email_server_server_web_ui_templates_logs_email_log_model", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_server_server_web_ui_templates_view_message_content_page", "to": "email_server_server_web_ui_templates_view_message_content_attachment_model", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_doc", "to": "readme_dkim", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_doc", "to": "readme_ip_whitelisting", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_doc", "to": "readme_license", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_doc", "to": "readme_spf", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_doc", "to": "readme_store_sent_emails", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_doc", "to": "readme_unified_doc", "label": "semantically_similar_to", "title": "semantically_similar_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_doc", "to": "readme_username_password_auth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_doc", "to": "tests_general_cli_usage_doc", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_doc", "to": "tests_run_tests_manually_doc", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_doc", "to": "requirements_gunicorn", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_dkim", "to": "readme_unified_dkim_support", "label": "conceptually_related_to", "title": "conceptually_related_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_ip_whitelisting", "to": "readme_unified_ip_whitelisting", "label": "conceptually_related_to", "title": "conceptually_related_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_license", "to": "readme_unified_mit_license", "label": "conceptually_related_to", "title": "conceptually_related_to [AMBIGUOUS]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "AMBIGUOUS"}, {"from": "readme_unified_doc", "to": "readme_unified_api_endpoints", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_unified_doc", "to": "readme_unified_database_schema", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_unified_doc", "to": "readme_unified_dkim_support", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_unified_doc", "to": "readme_unified_dns_configuration", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_unified_doc", "to": "readme_unified_domain_management", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_unified_doc", "to": "readme_unified_email_relay", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_unified_doc", "to": "readme_unified_ip_whitelisting", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_unified_doc", "to": "readme_unified_mit_license", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_unified_doc", "to": "readme_unified_project_structure", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_unified_doc", "to": "readme_unified_reverse_proxy", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_unified_doc", "to": "readme_unified_settings_ini", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_unified_doc", "to": "readme_unified_smtp_server", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_unified_doc", "to": "readme_unified_systemd_service", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_unified_doc", "to": "readme_unified_tls_ssl", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_unified_doc", "to": "readme_unified_user_authentication", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_unified_doc", "to": "readme_unified_web_management_interface", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_unified_smtp_server", "to": "requirements_aiosmtpd", "label": "implements", "title": "implements [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_unified_smtp_server", "to": "requirements_aiosmtplib", "label": "implements", "title": "implements [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_unified_web_management_interface", "to": "requirements_flask", "label": "implements", "title": "implements [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_unified_dkim_support", "to": "tests_general_cli_usage_dkim_key_management", "label": "conceptually_related_to", "title": "conceptually_related_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_unified_dkim_support", "to": "tests_run_tests_manually_dkim_key_generation", "label": "conceptually_related_to", "title": "conceptually_related_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_unified_dkim_support", "to": "readme_unified_dns_configuration", "label": "conceptually_related_to", "title": "conceptually_related_to [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_unified_dkim_support", "to": "requirements_cryptography", "label": "implements", "title": "implements [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_unified_dkim_support", "to": "requirements_dkimpy", "label": "implements", "title": "implements [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_unified_tls_ssl", "to": "requirements_pyopenssl", "label": "implements", "title": "implements [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_unified_user_authentication", "to": "tests_note_authentication_order_fix_authentication_order_fix", "label": "conceptually_related_to", "title": "conceptually_related_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_unified_user_authentication", "to": "requirements_bcrypt", "label": "implements", "title": "implements [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_unified_ip_whitelisting", "to": "tests_general_cli_usage_ip_whitelist_management", "label": "conceptually_related_to", "title": "conceptually_related_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_unified_ip_whitelisting", "to": "tests_note_authentication_order_fix_ip_whitelisting_fallback", "label": "conceptually_related_to", "title": "conceptually_related_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_unified_database_schema", "to": "requirements_flask_sqlalchemy", "label": "implements", "title": "implements [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_unified_database_schema", "to": "requirements_sqlalchemy", "label": "implements", "title": "implements [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_unified_dns_configuration", "to": "requirements_dnspython", "label": "implements", "title": "implements [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "requirements_doc", "to": "requirements_aiosmtpd", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "requirements_doc", "to": "requirements_aiosmtplib", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "requirements_doc", "to": "requirements_bcrypt", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "requirements_doc", "to": "requirements_cryptography", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "requirements_doc", "to": "requirements_dkimpy", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "requirements_doc", "to": "requirements_dnspython", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "requirements_doc", "to": "requirements_flask", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "requirements_doc", "to": "requirements_flask_sqlalchemy", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "requirements_doc", "to": "requirements_gunicorn", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "requirements_doc", "to": "requirements_jinja2", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "requirements_doc", "to": "requirements_pyopenssl", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "requirements_doc", "to": "requirements_python_dotenv", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "requirements_doc", "to": "requirements_pytz", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "requirements_doc", "to": "requirements_requests", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "requirements_doc", "to": "requirements_sqlalchemy", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "requirements_doc", "to": "requirements_werkzeug", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_email_body_lorem_ipsum", "to": "tests_pdf_test_1_document", "label": "semantically_similar_to", "title": "semantically_similar_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tests_email_body_lorem_ipsum", "to": "tests_general_cli_usage_swaks", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_general_cli_usage_doc", "to": "tests_general_cli_usage_db_direct_access", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_general_cli_usage_doc", "to": "tests_general_cli_usage_dkim_key_management", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_general_cli_usage_doc", "to": "tests_general_cli_usage_domain_management", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_general_cli_usage_doc", "to": "tests_general_cli_usage_ip_whitelist_management", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_general_cli_usage_doc", "to": "tests_general_cli_usage_send_email_script", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_general_cli_usage_doc", "to": "tests_general_cli_usage_swaks", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_general_cli_usage_doc", "to": "tests_general_cli_usage_user_management", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_general_cli_usage_doc", "to": "tests_general_cli_usage_web_interface_setup", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_general_cli_usage_send_email_script", "to": "tests_run_tests_manually_send_email_script", "label": "conceptually_related_to", "title": "conceptually_related_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tests_general_cli_usage_swaks", "to": "tests_run_tests_manually_swaks", "label": "conceptually_related_to", "title": "conceptually_related_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tests_note_authentication_order_fix_authentication_order_fix", "to": "tests_note_authentication_order_fix_auth_call", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_note_authentication_order_fix_authentication_order_fix", "to": "tests_note_authentication_order_fix_auth_ports", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_note_authentication_order_fix_authentication_order_fix", "to": "tests_note_authentication_order_fix_ip_whitelisting_fallback", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_note_authentication_order_fix_authentication_order_fix", "to": "tests_note_authentication_order_fix_no_starttls", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_run_tests_manually_doc", "to": "tests_run_tests_manually_db_log_check", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_run_tests_manually_doc", "to": "tests_run_tests_manually_dkim_key_generation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_run_tests_manually_doc", "to": "tests_run_tests_manually_send_email_script", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_run_tests_manually_doc", "to": "tests_run_tests_manually_swaks", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_run_tests_manually_doc", "to": "tests_run_tests_manually_web_interface_setup", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_pdf_test_1_document", "to": "tests_pdf_test_1_pebbles_image", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_hello_dogecoin_meme_image", "to": "tests_hello_email_attachment_test_fixture", "label": "conceptually_related_to", "title": "conceptually_related_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}];
|
|
const LEGEND = [{"cid": 0, "color": "#4E79A7", "label": "DKIM/SPF DNS Management UI", "count": 32}, {"cid": 1, "color": "#F28E2B", "label": "Web UI Database & Settings Utils", "count": 30}, {"cid": 2, "color": "#E15759", "label": "Admin Template Pages", "count": 27}, {"cid": 3, "color": "#76B7B2", "label": "App Bootstrap & Domain Models", "count": 21}, {"cid": 4, "color": "#59A14F", "label": "DKIM Key Manager", "count": 21}, {"cid": 5, "color": "#EDC948", "label": "SMTP Custom Protocol & Controllers", "count": 19}, {"cid": 6, "color": "#B07AA1", "label": "Sender/IP Authentication Logic", "count": 18}, {"cid": 7, "color": "#FF9DA7", "label": "Models Core & Logging Utils", "count": 17}, {"cid": 8, "color": "#9C755F", "label": "Email Relay Delivery", "count": 16}, {"cid": 9, "color": "#BAB0AC", "label": "Unified App Entry Point", "count": 15}, {"cid": 10, "color": "#4E79A7", "label": "Dashboard & Auth Log Web UI", "count": 14}, {"cid": 11, "color": "#F28E2B", "label": "IP Whitelist Web UI", "count": 14}, {"cid": 12, "color": "#E15759", "label": "SMTP Handler Message Processing", "count": 14}, {"cid": 13, "color": "#76B7B2", "label": "Sender Management Web UI", "count": 13}, {"cid": 14, "color": "#59A14F", "label": "Domain Management Web UI", "count": 12}, {"cid": 15, "color": "#EDC948", "label": "README Unified: Structure & Deployment", "count": 12}, {"cid": 16, "color": "#B07AA1", "label": "README Unified & Requirements: SMTP/DB Deps", "count": 12}, {"cid": 17, "color": "#FF9DA7", "label": "Manual Testing Docs (swaks/CLI)", "count": 11}, {"cid": 18, "color": "#9C755F", "label": "Settings Loader & TLS Utils", "count": 10}, {"cid": 19, "color": "#BAB0AC", "label": "DKIM/Custom Header Models", "count": 9}, {"cid": 20, "color": "#4E79A7", "label": "Combined Authenticators", "count": 9}, {"cid": 21, "color": "#F28E2B", "label": "CLI Usage & IP Whitelisting Docs", "count": 9}, {"cid": 22, "color": "#E15759", "label": "Message Viewer Web UI", "count": 7}, {"cid": 23, "color": "#76B7B2", "label": "DKIM/DNS Dependencies", "count": 7}, {"cid": 24, "color": "#59A14F", "label": "README: License & Auth Features", "count": 7}, {"cid": 25, "color": "#EDC948", "label": "systemd Install Script", "count": 7}, {"cid": 26, "color": "#B07AA1", "label": "Auth Order Fix Notes", "count": 6}, {"cid": 27, "color": "#FF9DA7", "label": "Sender Model", "count": 5}, {"cid": 28, "color": "#9C755F", "label": "send_email.py Test Script", "count": 5}, {"cid": 29, "color": "#BAB0AC", "label": "SMTP Management JS (Frontend)", "count": 4}, {"cid": 30, "color": "#4E79A7", "label": "SMTP Handler Module & Message ID Util", "count": 4}, {"cid": 31, "color": "#F28E2B", "label": "Template Datetime Filter", "count": 3}, {"cid": 32, "color": "#E15759", "label": "Dashboard Route", "count": 3}, {"cid": 33, "color": "#76B7B2", "label": "nginx Setup Script", "count": 3}, {"cid": 34, "color": "#59A14F", "label": "email_server Package Init", "count": 2}, {"cid": 35, "color": "#EDC948", "label": "DKIM Management JS (Frontend)", "count": 2}, {"cid": 36, "color": "#B07AA1", "label": "Python Env Setup Script", "count": 2}, {"cid": 37, "color": "#FF9DA7", "label": "bash_send_email Test Script", "count": 2}, {"cid": 38, "color": "#9C755F", "label": "Hello.jpg Test Fixture (Doge Meme)", "count": 2}];
|
|
|
|
// HTML-escape helper — prevents XSS when injecting graph data into innerHTML
|
|
function esc(s) {
|
|
return String(s).replace(/&/g,'&').replace(/</g,'<').replace(/>/g,'>').replace(/"/g,'"').replace(/'/g,''');
|
|
}
|
|
|
|
// Build vis datasets
|
|
const nodesDS = new vis.DataSet(RAW_NODES.map(n => ({
|
|
id: n.id, label: n.label, color: n.color, size: n.size,
|
|
font: n.font, title: n.title,
|
|
_community: n.community, _community_name: n.community_name,
|
|
_source_file: n.source_file, _file_type: n.file_type, _degree: n.degree,
|
|
})));
|
|
|
|
const edgesDS = new vis.DataSet(RAW_EDGES.map((e, i) => ({
|
|
id: i, from: e.from, to: e.to,
|
|
label: '',
|
|
title: e.title,
|
|
dashes: e.dashes,
|
|
width: e.width,
|
|
color: e.color,
|
|
arrows: { to: { enabled: true, scaleFactor: 0.5 } },
|
|
})));
|
|
|
|
const container = document.getElementById('graph');
|
|
const network = new vis.Network(container, { nodes: nodesDS, edges: edgesDS }, {
|
|
physics: {
|
|
enabled: true,
|
|
solver: 'forceAtlas2Based',
|
|
forceAtlas2Based: {
|
|
gravitationalConstant: -60,
|
|
centralGravity: 0.005,
|
|
springLength: 120,
|
|
springConstant: 0.08,
|
|
damping: 0.4,
|
|
avoidOverlap: 0.8,
|
|
},
|
|
stabilization: { iterations: 200, fit: true },
|
|
},
|
|
interaction: {
|
|
hover: true,
|
|
tooltipDelay: 100,
|
|
hideEdgesOnDrag: true,
|
|
navigationButtons: false,
|
|
keyboard: false,
|
|
},
|
|
nodes: { shape: 'dot', borderWidth: 1.5 },
|
|
edges: { smooth: { type: 'continuous', roundness: 0.2 }, selectionWidth: 3 },
|
|
});
|
|
|
|
network.once('stabilizationIterationsDone', () => {
|
|
network.setOptions({ physics: { enabled: false } });
|
|
});
|
|
|
|
function showInfo(nodeId) {
|
|
const n = nodesDS.get(nodeId);
|
|
if (!n) return;
|
|
const neighborIds = network.getConnectedNodes(nodeId);
|
|
const neighborItems = neighborIds.map(nid => {
|
|
const nb = nodesDS.get(nid);
|
|
const color = nb ? nb.color.background : '#555';
|
|
return `<span class="neighbor-link" style="border-left-color:${esc(color)}" data-nid="${esc(nid)}">${esc(nb ? nb.label : nid)}</span>`;
|
|
}).join('');
|
|
document.getElementById('info-content').innerHTML = `
|
|
<div class="field"><b>${esc(n.label)}</b></div>
|
|
<div class="field">Type: ${esc(n._file_type || 'unknown')}</div>
|
|
<div class="field">Community: ${esc(n._community_name)}</div>
|
|
<div class="field">Source: ${esc(n._source_file || '-')}</div>
|
|
<div class="field">Degree: ${n._degree}</div>
|
|
${neighborIds.length ? `<div class="field" style="margin-top:8px;color:#aaa;font-size:11px">Neighbors (${neighborIds.length})</div><div id="neighbors-list">${neighborItems}</div>` : ''}
|
|
`;
|
|
}
|
|
|
|
function focusNode(nodeId) {
|
|
network.focus(nodeId, { scale: 1.4, animation: true });
|
|
network.selectNodes([nodeId]);
|
|
showInfo(nodeId);
|
|
}
|
|
|
|
// Neighbor links use a data attribute + one delegated listener rather than an
|
|
// inline onclick. A node id/label sourced from a document or a scraped URL
|
|
// (graphify add) can contain a double-quote; dropping the stringified id
|
|
// unescaped into a quoted onclick both broke every link and allowed a hostile
|
|
// source to inject an event handler into the local report (stored XSS, #1838).
|
|
// esc() on data-nid keeps the value inside the attribute; the listener reads it
|
|
// back verbatim. Bound to document so it survives the innerHTML rebuild that
|
|
// recreates #neighbors-list on each showInfo().
|
|
document.addEventListener('click', e => {
|
|
const el = e.target.closest('.neighbor-link');
|
|
if (el && el.dataset.nid !== undefined) focusNode(el.dataset.nid);
|
|
});
|
|
|
|
// Track hovered node — hover detection is more reliable than click params
|
|
let hoveredNodeId = null;
|
|
network.on('hoverNode', params => {
|
|
hoveredNodeId = params.node;
|
|
container.style.cursor = 'pointer';
|
|
});
|
|
network.on('blurNode', () => {
|
|
hoveredNodeId = null;
|
|
container.style.cursor = 'default';
|
|
});
|
|
container.addEventListener('click', () => {
|
|
if (hoveredNodeId !== null) {
|
|
showInfo(hoveredNodeId);
|
|
network.selectNodes([hoveredNodeId]);
|
|
}
|
|
});
|
|
network.on('click', params => {
|
|
if (params.nodes.length > 0) {
|
|
showInfo(params.nodes[0]);
|
|
} else if (hoveredNodeId === null) {
|
|
document.getElementById('info-content').innerHTML = '<span class="empty">Click a node to inspect it</span>';
|
|
}
|
|
});
|
|
|
|
const searchInput = document.getElementById('search');
|
|
const searchResults = document.getElementById('search-results');
|
|
searchInput.addEventListener('input', () => {
|
|
const q = searchInput.value.toLowerCase().trim();
|
|
searchResults.innerHTML = '';
|
|
if (!q) { searchResults.style.display = 'none'; return; }
|
|
const matches = RAW_NODES.filter(n => n.label.toLowerCase().includes(q)).slice(0, 20);
|
|
if (!matches.length) { searchResults.style.display = 'none'; return; }
|
|
searchResults.style.display = 'block';
|
|
matches.forEach(n => {
|
|
const el = document.createElement('div');
|
|
el.className = 'search-item';
|
|
el.textContent = n.label;
|
|
el.style.borderLeft = `3px solid ${n.color.background}`;
|
|
el.style.paddingLeft = '8px';
|
|
el.onclick = () => {
|
|
network.focus(n.id, { scale: 1.5, animation: true });
|
|
network.selectNodes([n.id]);
|
|
showInfo(n.id);
|
|
searchResults.style.display = 'none';
|
|
searchInput.value = '';
|
|
};
|
|
searchResults.appendChild(el);
|
|
});
|
|
});
|
|
document.addEventListener('click', e => {
|
|
if (!searchResults.contains(e.target) && e.target !== searchInput)
|
|
searchResults.style.display = 'none';
|
|
});
|
|
|
|
const hiddenCommunities = new Set();
|
|
|
|
const selectAllCb = document.getElementById('select-all-cb');
|
|
|
|
function updateSelectAllState() {
|
|
const total = LEGEND.length;
|
|
const hidden = hiddenCommunities.size;
|
|
selectAllCb.checked = hidden === 0;
|
|
selectAllCb.indeterminate = hidden > 0 && hidden < total;
|
|
}
|
|
|
|
function toggleAllCommunities(hide) {
|
|
document.querySelectorAll('.legend-item').forEach(item => {
|
|
hide ? item.classList.add('dimmed') : item.classList.remove('dimmed');
|
|
});
|
|
document.querySelectorAll('.legend-cb').forEach(cb => {
|
|
cb.checked = !hide;
|
|
});
|
|
LEGEND.forEach(c => {
|
|
if (hide) hiddenCommunities.add(c.cid); else hiddenCommunities.delete(c.cid);
|
|
});
|
|
const updates = RAW_NODES.map(n => ({ id: n.id, hidden: hide }));
|
|
nodesDS.update(updates);
|
|
updateSelectAllState();
|
|
}
|
|
|
|
const legendEl = document.getElementById('legend');
|
|
LEGEND.forEach(c => {
|
|
const item = document.createElement('div');
|
|
item.className = 'legend-item';
|
|
const cb = document.createElement('input');
|
|
cb.type = 'checkbox';
|
|
cb.className = 'legend-cb';
|
|
cb.checked = true;
|
|
cb.addEventListener('change', (e) => {
|
|
e.stopPropagation();
|
|
if (cb.checked) {
|
|
hiddenCommunities.delete(c.cid);
|
|
item.classList.remove('dimmed');
|
|
} else {
|
|
hiddenCommunities.add(c.cid);
|
|
item.classList.add('dimmed');
|
|
}
|
|
const updates = RAW_NODES
|
|
.filter(n => n.community === c.cid)
|
|
.map(n => ({ id: n.id, hidden: !cb.checked }));
|
|
nodesDS.update(updates);
|
|
updateSelectAllState();
|
|
});
|
|
item.innerHTML = `<div class="legend-dot" style="background:${c.color}"></div>
|
|
<span class="legend-label">${c.label}</span>
|
|
<span class="legend-count">${c.count}</span>`;
|
|
item.prepend(cb);
|
|
item.onclick = (e) => {
|
|
if (e.target === cb) return;
|
|
cb.checked = !cb.checked;
|
|
cb.dispatchEvent(new Event('change'));
|
|
};
|
|
legendEl.appendChild(item);
|
|
});
|
|
</script>
|
|
<script>
|
|
// Render hyperedges as shaded regions
|
|
const hyperedges = [{"id": "domain_crud_flow", "label": "Domain CRUD Flow", "nodes": ["email_server_server_web_ui_templates_add_domain_page", "email_server_server_web_ui_templates_domains_page", "email_server_server_web_ui_templates_edit_domain_page", "email_server_server_web_ui_templates_domains_domain_model"], "relation": "participate_in", "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "email_server/server_web_ui/templates/domains.html"}, {"id": "dkim_dns_verification_flow", "label": "DKIM/SPF DNS Verification Flow", "nodes": ["email_server_server_web_ui_templates_dkim_page", "email_server_server_web_ui_templates_edit_dkim_page", "email_server_server_web_ui_templates_dkim_dkim_key_model", "email_server_server_web_ui_templates_domains_domain_model"], "relation": "participate_in", "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "email_server/server_web_ui/templates/dkim.html"}, {"id": "email_log_message_viewer_flow", "label": "Email Log Message Viewer Flow", "nodes": ["email_server_server_web_ui_templates_logs_page", "email_server_server_web_ui_templates_view_message_content_page", "email_server_server_web_ui_templates_logs_email_log_model", "email_server_server_web_ui_templates_view_message_content_attachment_model"], "relation": "participate_in", "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "email_server/server_web_ui/templates/logs.html"}, {"id": "smtp_auth_ip_whitelist_flow", "label": "SMTP Authentication & IP Whitelist Flow", "nodes": ["tests_note_authentication_order_fix_authentication_order_fix", "tests_note_authentication_order_fix_ip_whitelisting_fallback", "readme_unified_user_authentication", "readme_unified_ip_whitelisting"], "relation": "participate_in", "confidence": "INFERRED", "confidence_score": 0.85, "source_file": "tests/note_authentication_order_fix.md"}, {"id": "manual_smtp_testing_workflow", "label": "Manual SMTP Testing Workflow", "nodes": ["tests_general_cli_usage_swaks", "tests_run_tests_manually_swaks", "tests_email_body_lorem_ipsum", "tests_general_cli_usage_send_email_script"], "relation": "form", "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "tests/general_cli_usage.md"}, {"id": "dkim_keygen_dns_verification_flow", "label": "DKIM Key Generation & DNS Verification Flow", "nodes": ["readme_unified_dkim_support", "readme_unified_dns_configuration", "tests_general_cli_usage_dkim_key_management", "tests_run_tests_manually_dkim_key_generation"], "relation": "participate_in", "confidence": "INFERRED", "confidence_score": 0.85, "source_file": "README_unified.md"}];
|
|
// afterDrawing passes ctx already transformed to network coordinate space.
|
|
// Draw node positions raw — no manual pan/zoom/DPR math needed.
|
|
network.on('afterDrawing', function(ctx) {
|
|
hyperedges.forEach(h => {
|
|
const positions = h.nodes
|
|
.map(nid => network.getPositions([nid])[nid])
|
|
.filter(p => p !== undefined);
|
|
if (positions.length < 2) return;
|
|
ctx.save();
|
|
ctx.globalAlpha = 0.12;
|
|
ctx.fillStyle = '#6366f1';
|
|
ctx.strokeStyle = '#6366f1';
|
|
ctx.lineWidth = 2;
|
|
ctx.beginPath();
|
|
// Centroid and expanded hull in network coordinates
|
|
const cx = positions.reduce((s, p) => s + p.x, 0) / positions.length;
|
|
const cy = positions.reduce((s, p) => s + p.y, 0) / positions.length;
|
|
const expanded = positions.map(p => ({
|
|
x: cx + (p.x - cx) * 1.15,
|
|
y: cy + (p.y - cy) * 1.15
|
|
}));
|
|
ctx.moveTo(expanded[0].x, expanded[0].y);
|
|
expanded.slice(1).forEach(p => ctx.lineTo(p.x, p.y));
|
|
ctx.closePath();
|
|
ctx.fill();
|
|
ctx.globalAlpha = 0.4;
|
|
ctx.stroke();
|
|
// Label
|
|
ctx.globalAlpha = 0.8;
|
|
ctx.fillStyle = '#4f46e5';
|
|
ctx.font = 'bold 11px sans-serif';
|
|
ctx.textAlign = 'center';
|
|
ctx.fillText(h.label, cx, cy - 5);
|
|
ctx.restore();
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |