diff --git a/backend/00-router.go b/backend/00-router.go
index 7c1df61..19bc4ea 100644
--- a/backend/00-router.go
+++ b/backend/00-router.go
@@ -139,6 +139,7 @@ func renderShell(w http.ResponseWriter, r *http.Request, active, readingPane str
Postfach <--> Archiv-MBox
Archiv-MBox <--> Postfach
Postfach <--> Postfach
+ Archiv-MBox <--> Archiv-MBox
Benutzerverwaltung
Logout
@@ -714,6 +715,7 @@ func renderAccountsPage(w http.ResponseWriter, r *http.Request, accounts []Accou
Postfach <--> Archiv-MBox
Archiv-MBox <--> Postfach
Postfach <--> Postfach
+ Archiv-MBox <--> Archiv-MBox
Benutzerverwaltung
Logout
@@ -759,6 +761,7 @@ func renderArchivesPage(w http.ResponseWriter, r *http.Request, archives []strin
Postfach <--> Archiv-MBox
Archiv-MBox <--> Postfach
Postfach <--> Postfach
+ Archiv-MBox <--> Archiv-MBox
Benutzerverwaltung
Logout
@@ -806,6 +809,7 @@ func renderUsersPage(w http.ResponseWriter, r *http.Request, users []AppUser, ed
Postfach <--> Archiv-MBox
Archiv-MBox <--> Postfach
Postfach <--> Postfach
+ Archiv-MBox <--> Archiv-MBox
Benutzerverwaltung
Logout
@@ -840,6 +844,7 @@ func transferModeBySlug(slug string) transferMode {
{Slug: "postfach-archiv", Title: "Postfach <--> Archiv-MBox", LeftTitle: "Postfach", RightTitle: "Archiv-MBox", LeftKind: "source", RightKind: "archive"},
{Slug: "archiv-postfach", Title: "Archiv-MBox <--> Postfach", LeftTitle: "Archiv-MBox", RightTitle: "Postfach", LeftKind: "archive", RightKind: "target"},
{Slug: "postfach-postfach", Title: "Postfach <--> Postfach", LeftTitle: "Quell-Postfach", RightTitle: "Ziel-Postfach", LeftKind: "source", RightKind: "target"},
+ {Slug: "archiv-archiv", Title: "Archiv-MBox <--> Archiv-MBox", LeftTitle: "Archiv-MBox", RightTitle: "Archiv-MBox", LeftKind: "archive", RightKind: "archive"},
}
for _, mode := range modes {
if mode.Slug == slug {
@@ -918,6 +923,7 @@ func renderSourceEmailBoxPage(w http.ResponseWriter, r *http.Request, accounts [
Postfach <--> Archiv-MBox
Archiv-MBox <--> Postfach
Postfach <--> Postfach
+ Archiv-MBox <--> Archiv-MBox
Benutzerverwaltung
Logout
@@ -961,6 +967,7 @@ func renderTargetEmailBoxPage(w http.ResponseWriter, r *http.Request, accounts [
Postfach <--> Archiv-MBox
Archiv-MBox <--> Postfach
Postfach <--> Postfach
+ Archiv-MBox <--> Archiv-MBox
Benutzerverwaltung
Logout
@@ -1442,6 +1449,7 @@ func transferMenuItems(active string) string {
{Slug: "postfach-archiv", Title: "Postfach <--> Archiv-MBox"},
{Slug: "archiv-postfach", Title: "Archiv-MBox <--> Postfach"},
{Slug: "postfach-postfach", Title: "Postfach <--> Postfach"},
+ {Slug: "archiv-archiv", Title: "Archiv-MBox <--> Archiv-MBox"},
}
var b strings.Builder
for _, item := range items {
@@ -1505,6 +1513,7 @@ func renderRibbonTransferMenu(active string) string {
{Slug: "postfach-archiv", Title: "Postfach <--> Archiv-MBox"},
{Slug: "archiv-postfach", Title: "Archiv-MBox <--> Postfach"},
{Slug: "postfach-postfach", Title: "Postfach <--> Postfach"},
+ {Slug: "archiv-archiv", Title: "Archiv-MBox <--> Archiv-MBox"},
}
buttonClass := "tab ribbon-menu-button"
if active != "" {