# Copyright (C) 2020 all contributors # License: AGPL-3.0+ # represents an IMAPD (currently a singleton), # see script/public-inbox-imapd for how it is used package PublicInbox::IMAPD; use strict; use parent qw(PublicInbox::NNTPD); sub new { my ($class) = @_; $class->SUPER::new; # PublicInbox::NNTPD->new } 1;