mirror of
https://github.com/stalwartlabs/mail-server.git
synced 2025-10-11 04:55:51 +08:00
Fix OSS build (closes #1724)
This commit is contained in:
parent
46dfd926d9
commit
861471fde4
1 changed files with 8 additions and 0 deletions
|
@ -752,6 +752,14 @@ impl Server {
|
||||||
.await
|
.await
|
||||||
.caused_by(trc::location!())
|
.caused_by(trc::location!())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(not(feature = "enterprise"))]
|
||||||
|
pub async fn logo_resource(
|
||||||
|
&self,
|
||||||
|
_: &str,
|
||||||
|
) -> trc::Result<Option<crate::manager::webadmin::Resource<Vec<u8>>>> {
|
||||||
|
Ok(None)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub trait BuildServer {
|
pub trait BuildServer {
|
||||||
|
|
Loading…
Add table
Reference in a new issue