1
0
mirror of https://git.teknik.io/Teknikode/Teknik.git synced 2023-08-02 14:16:22 +02:00
Teknik/MailService/IMailService.cs
Uncled1023 7f1efd40d5 - Updated mail storage to be by bytes.
- Added upload limits to multiple spots
2021-11-15 23:42:57 -08:00

28 lines
626 B
C#

using System;
namespace Teknik.MailService
{
public interface IMailService
{
bool AccountExists(string username);
DateTime LastActive(string username);
bool Enabled(string username);
void CreateAccount(string username, string password, long size);
void EditPassword(string username, string password);
void EditMaxSize(string username, long size);
void EditMaxEmailsPerDay(string username, int maxPerDay);
void EnableAccount(string username);
void DisableAccount(string username);
void DeleteAccount(string username);
}
}