1Net::DNS::RR::MINFO(3)User Contributed Perl DocumentationNet::DNS::RR::MINFO(3)
2
3
4
6 Net::DNS::RR::MINFO - DNS MINFO resource record
7
9 use Net::DNS;
10 $rr = new Net::DNS::RR('name MINFO rmailbx emailbx');
11
13 Class for DNS Mailbox Information (MINFO) resource records.
14
16 The available methods are those inherited from the base class augmented
17 by the type-specific methods defined in this package.
18
19 Use of undocumented package features or direct access to internal data
20 structures is discouraged and could result in program termination or
21 other unpredictable behaviour.
22
23 rmailbx
24 $rmailbx = $rr->rmailbx;
25 $rr->rmailbx( $rmailbx );
26
27 A domain name which specifies a mailbox which is responsible for the
28 mailing list or mailbox. If this domain name names the root, the owner
29 of the MINFO RR is responsible for itself. Note that many existing
30 mailing lists use a mailbox X-request to identify the maintainer of
31 mailing list X, e.g., Msgroup-request for Msgroup. This field provides
32 a more general mechanism.
33
34 emailbx
35 $emailbx = $rr->emailbx;
36 $rr->emailbx( $emailbx );
37
38 A domain name which specifies a mailbox which is to receive error
39 messages related to the mailing list or mailbox specified by the owner
40 of the MINFO RR (similar to the ERRORS-TO: field which has been
41 proposed). If this domain name names the root, errors should be
42 returned to the sender of the message.
43
45 Copyright (c)1997 Michael Fuhr.
46
47 All rights reserved.
48
49 Package template (c)2009,2012 O.M.Kolkman and R.W.Franks.
50
52 Permission to use, copy, modify, and distribute this software and its
53 documentation for any purpose and without fee is hereby granted,
54 provided that the above copyright notice appear in all copies and that
55 both that copyright notice and this permission notice appear in
56 supporting documentation, and that the name of the author not be used
57 in advertising or publicity pertaining to distribution of the software
58 without specific prior written permission.
59
60 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
61 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
62 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
63 IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
64 CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
65 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
66 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
67
69 perl, Net::DNS, Net::DNS::RR, RFC1035 Section 3.3.7
70
71
72
73perl v5.28.0 2018-11-14 Net::DNS::RR::MINFO(3)