feat(channels): wire up email channel (IMAP/SMTP) into config and registration

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Argenis
2026-02-15 10:58:30 -05:00
committed by GitHub
parent efe7ae53ce
commit ced4d70814
8 changed files with 48 additions and 162 deletions

View File

@@ -210,6 +210,8 @@ fn has_supervised_channels(config: &Config) -> bool {
|| config.channels_config.slack.is_some()
|| config.channels_config.imessage.is_some()
|| config.channels_config.matrix.is_some()
|| config.channels_config.whatsapp.is_some()
|| config.channels_config.email.is_some()
}
#[cfg(test)]