The tenant switch. A tenant's administrator turns legacy mail protocols off for its own tenant, and from then on sign-in over IMAP, POP3, ManageSieve and SMTP AUTH is refused for every address on the tenant's domains, while every other domain on the server carries on. No port closes, since other tenants share them (LP-13): it is one stored fact per tenant, read at sign-in and when client configuration is answered. inbuxa:TenantProtocolPolicy/get and /set, one per tenant, id the tenant's: - Inside a tenant, a principal reaches only its own tenant's switch (MT-1): /get with no ids answers with it, another tenant's is notFound and can't be changed. At server level /get with no ids lists every tenant's. - Turning it off is always allowed. Turning it back on is refused with forbidden, naming inbuxa:ProtocolPolicy, while the server has legacy protocols off (LP-9). - A change raises security.legacy-protocols-changed with policy = tenant, the tenant's id, the new value and who made it (LP-14). - It takes sysDomainGet and sysDomainUpdate, not the two new permissions the spec names. The switch governs sign-in on the tenant's domains, so whoever manages those domains may turn it -- and the default Tenant Administrator role already holds both, where new permissions would reach no role already stored on a server (MT-12's note), leaving today's tenant administrators without the switch until someone edited their role by hand. The same trade inbuxa:AiLimits and inbuxa:ProtocolPolicy made. /query is not built yet; /get with no ids covers listing. Sign-in (LP-10 to LP-12). Before the credentials are looked at, the name given is resolved to its domain and the domain to its tenant, so a real account and a made-up address on the domain get the same refusal, with a right password or a wrong one, counted as no failed sign-in (LP-11). The words are the spec's: "Your organization allows only INBUXA webmail and JMAP apps...", in each protocol's form. A bearer token needn't name an account, so after authentication the account's own tenant is checked too; a token that named nobody can't slip past. The refusal carries policy = tenant and the domain, not the tenant's id: IMAP answers a command's tag from the Id key, so an error holding one was sent under the wrong tag and the mail app hung waiting for its reply. The first live run found that; a unit test now holds the refusal to it. Client configuration (LP-14a). Autoconfig, autodiscover, PACC and the suggested DNS records now ask whether legacy services are off for the domain being answered for -- the server's switch, or the domain's tenant's -- so a tenant's domains stop offering IMAP, POP3 and submission while others still do. tests/e2e/legacy_protocols.py builds a tenant with its own domain, a user and a tenant administrator, and a second tenant, and proves on a running server: the admin sees and changes only its own tenant's switch (test 10); turning it off is an event (test 14); the tenant's user is refused over IMAP with the right password and a wrong one, a made-up address on the domain the same (tests 6, 7); POP3 and submission refuse in their own forms and JMAP still works (test 8); an account on another domain signs in normally (test 6); autoconfig drops IMAP for the tenant's domain only; with the server off, the tenant can't turn it back on (test 9); and once back on, the user signs in again. All 62 checks pass.
219 lines
5.5 KiB
Rust
219 lines
5.5 KiB
Rust
/*
|
|
* SPDX-FileCopyrightText: 2020 Stalwart Labs LLC <[email protected]>
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-SEL
|
|
*
|
|
* Modified by Coffey Labs in 2026 for INBUXA.
|
|
*/
|
|
|
|
use crate::request::deserialize::DeserializeArguments;
|
|
use jmap_tools::{Element, Null, Property};
|
|
use serde::Serialize;
|
|
use std::{fmt::Debug, str::FromStr};
|
|
use types::{acl::Acl, blob::BlobId, id::Id};
|
|
|
|
pub mod addressbook;
|
|
pub mod blob;
|
|
pub mod calendar;
|
|
pub mod calendar_event;
|
|
pub mod calendar_event_notification;
|
|
pub mod contact;
|
|
pub mod email;
|
|
pub mod email_submission;
|
|
pub mod fastmail_masked_email; // inbuxa: masked email
|
|
pub mod inbuxa_ai_limits; // inbuxa: AI spam classification
|
|
pub mod inbuxa_protocol_policy; // inbuxa: legacy protocols off
|
|
pub mod inbuxa_tenant_protocol_policy; // inbuxa: legacy protocols off, per tenant
|
|
pub mod inbuxa_deleted_account; // inbuxa: undelete
|
|
pub mod file_node;
|
|
pub mod identity;
|
|
pub mod mailbox;
|
|
pub mod participant_identity;
|
|
pub mod principal;
|
|
pub mod push_subscription;
|
|
pub mod quota;
|
|
pub mod registry;
|
|
pub mod search_snippet;
|
|
pub mod share_notification;
|
|
pub mod sieve;
|
|
pub mod thread;
|
|
pub mod vacation_response;
|
|
|
|
pub trait JmapObject: std::fmt::Debug {
|
|
type Property: Property + JmapObjectId + FromStr + Debug + Sync + Send;
|
|
type Element: Element<Property = Self::Property> + JmapObjectId + Debug + Sync + Send;
|
|
type Id: FromStr + TryFrom<AnyId> + Into<Self::Element> + Serialize + Debug + Sync + Send;
|
|
|
|
type Filter: Default + for<'de> DeserializeArguments<'de> + Debug + Sync + Send;
|
|
type Comparator: Default + for<'de> DeserializeArguments<'de> + Debug + Sync + Send;
|
|
|
|
type GetArguments: Default + for<'de> DeserializeArguments<'de> + Debug + Sync + Send;
|
|
type SetArguments<'de>: Default + DeserializeArguments<'de> + Debug + Sync + Send;
|
|
type QueryArguments: Default + for<'de> DeserializeArguments<'de> + Debug + Sync + Send;
|
|
type CopyArguments: Default + for<'de> DeserializeArguments<'de> + Debug + Sync + Send;
|
|
type ParseArguments: Default + for<'de> DeserializeArguments<'de> + Debug + Sync + Send;
|
|
|
|
const ID_PROPERTY: Self::Property;
|
|
}
|
|
|
|
pub trait JmapSharedObject: JmapObject {
|
|
type Right: JmapRight + Into<Self::Property> + Debug + Clone + Copy + Sync + Send;
|
|
|
|
const SHARE_WITH_PROPERTY: Self::Property;
|
|
}
|
|
|
|
pub trait JmapRight: Clone + Copy + Sized + 'static {
|
|
fn all_rights() -> &'static [Self];
|
|
fn to_acl(&self) -> &'static [Acl];
|
|
}
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
|
|
#[serde(untagged)]
|
|
pub enum AnyId {
|
|
Id(Id),
|
|
BlobId(BlobId),
|
|
}
|
|
|
|
pub trait JmapObjectId {
|
|
fn as_id(&self) -> Option<Id>;
|
|
fn as_any_id(&self) -> Option<AnyId>;
|
|
fn as_id_ref(&self) -> Option<&str>;
|
|
fn try_set_id(&mut self, new_id: AnyId) -> bool;
|
|
}
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
|
enum MaybeReference<T: FromStr> {
|
|
Value(T),
|
|
Reference(String),
|
|
ParseError,
|
|
}
|
|
|
|
fn parse_ref<T: FromStr>(value: &str) -> MaybeReference<T> {
|
|
if let Some(reference) = value.strip_prefix('#') {
|
|
MaybeReference::Reference(reference.to_string())
|
|
} else {
|
|
T::from_str(value)
|
|
.map(MaybeReference::Value)
|
|
.unwrap_or(MaybeReference::ParseError)
|
|
}
|
|
}
|
|
|
|
impl From<Id> for AnyId {
|
|
fn from(value: Id) -> Self {
|
|
AnyId::Id(value)
|
|
}
|
|
}
|
|
|
|
impl From<BlobId> for AnyId {
|
|
fn from(value: BlobId) -> Self {
|
|
AnyId::BlobId(value)
|
|
}
|
|
}
|
|
|
|
impl TryFrom<AnyId> for Id {
|
|
type Error = ();
|
|
|
|
fn try_from(value: AnyId) -> Result<Self, Self::Error> {
|
|
if let AnyId::Id(id) = value {
|
|
Ok(id)
|
|
} else {
|
|
Err(())
|
|
}
|
|
}
|
|
}
|
|
|
|
impl TryFrom<AnyId> for BlobId {
|
|
type Error = ();
|
|
|
|
fn try_from(value: AnyId) -> Result<Self, Self::Error> {
|
|
if let AnyId::BlobId(id) = value {
|
|
Ok(id)
|
|
} else {
|
|
Err(())
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<'de> serde::Deserialize<'de> for AnyId {
|
|
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
|
|
where
|
|
D: serde::Deserializer<'de>,
|
|
{
|
|
let value = <&str>::deserialize(deserializer)?;
|
|
if let Some(blob_id) = BlobId::from_base32(value) {
|
|
Ok(AnyId::BlobId(blob_id))
|
|
} else if let Ok(id) = Id::from_str(value) {
|
|
Ok(AnyId::Id(id))
|
|
} else {
|
|
Err(serde::de::Error::custom(format!(
|
|
"Invalid AnyId: {}",
|
|
value
|
|
)))
|
|
}
|
|
}
|
|
}
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash, PartialOrd, Ord, Serialize)]
|
|
pub struct NullObject;
|
|
|
|
impl JmapObject for NullObject {
|
|
type Property = Null;
|
|
type Element = Null;
|
|
type Id = Null;
|
|
|
|
type Filter = ();
|
|
type Comparator = ();
|
|
|
|
type GetArguments = ();
|
|
type SetArguments<'de> = ();
|
|
type QueryArguments = ();
|
|
type CopyArguments = ();
|
|
type ParseArguments = ();
|
|
|
|
const ID_PROPERTY: Self::Property = Null;
|
|
}
|
|
|
|
impl JmapRight for Null {
|
|
fn all_rights() -> &'static [Self] {
|
|
unreachable!()
|
|
}
|
|
|
|
fn to_acl(&self) -> &'static [Acl] {
|
|
unreachable!()
|
|
}
|
|
}
|
|
|
|
impl FromStr for NullObject {
|
|
type Err = ();
|
|
|
|
fn from_str(_: &str) -> Result<Self, Self::Err> {
|
|
unreachable!()
|
|
}
|
|
}
|
|
|
|
impl JmapObjectId for Null {
|
|
fn as_id(&self) -> Option<Id> {
|
|
unreachable!()
|
|
}
|
|
|
|
fn as_any_id(&self) -> Option<AnyId> {
|
|
unreachable!()
|
|
}
|
|
|
|
fn as_id_ref(&self) -> Option<&str> {
|
|
unreachable!()
|
|
}
|
|
|
|
fn try_set_id(&mut self, _: AnyId) -> bool {
|
|
unreachable!()
|
|
}
|
|
}
|
|
|
|
impl TryFrom<AnyId> for Null {
|
|
type Error = ();
|
|
|
|
fn try_from(_: AnyId) -> Result<Self, Self::Error> {
|
|
unreachable!()
|
|
}
|
|
}
|