mirror of
https://github.com/stalwartlabs/mail-server.git
synced 2025-09-10 22:14:42 +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
|
||||
.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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue