summaryrefslogtreecommitdiff
path: root/src/org/noreply/fancydress/directory/ServerDescriptor.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/noreply/fancydress/directory/ServerDescriptor.java')
-rw-r--r--src/org/noreply/fancydress/directory/ServerDescriptor.java18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/org/noreply/fancydress/directory/ServerDescriptor.java b/src/org/noreply/fancydress/directory/ServerDescriptor.java
index 4c0cba1..4bb866c 100644
--- a/src/org/noreply/fancydress/directory/ServerDescriptor.java
+++ b/src/org/noreply/fancydress/directory/ServerDescriptor.java
@@ -354,4 +354,22 @@ public class ServerDescriptor {
return outgoingMMTPSection;
}
+ /**
+ * Get the Delivery/MBOX section.
+ *
+ * @return this server descriptor's Delivery/MBOX section
+ */
+ public DeliveryMBOXSection getDeliveryMBOXSection() {
+ return deliveryMBOXSection;
+ }
+
+ /**
+ * Get the Delivery/SMTP section.
+ *
+ * @return this server descriptor's Delivery/SMTP section
+ */
+ public DeliverySMTPSection getDeliverySMTPSection() {
+ return deliverySMTPSection;
+ }
+
}