Make all mailbox fields editable; pre-populate username from API response

Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
Agent-Logs-Url: https://github.com/christianlouis/pop_puller_to_gmail/sessions/20fa7a89-23e5-462c-8b4d-9c6cdb4d0501
This commit is contained in:
copilot-swe-agent[bot]
2026-03-25 23:06:04 +00:00
parent 20170f2f2d
commit 8cf0d101bf
5 changed files with 46 additions and 37 deletions
+8
View File
@@ -58,6 +58,7 @@ export interface MailAccount {
port: number;
use_ssl: boolean;
use_tls: boolean;
username: string;
forward_to: string;
delivery_method: string;
is_enabled: boolean;
@@ -97,6 +98,13 @@ export interface MailAccountCreate {
export interface MailAccountUpdate {
name?: string;
email_address?: string;
protocol?: string;
host?: string;
port?: number;
use_ssl?: boolean;
use_tls?: boolean;
username?: string;
password?: string;
forward_to?: string;
delivery_method?: string;