1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509
|
<pre>Network Working Group A. Melnikov
Request for Comments: 4314 Isode Ltd.
Obsoletes: <a href="./rfc2086">2086</a> December 2005
Category: Standards Track
<span class="h1">IMAP4 Access Control List (ACL) Extension</span>
Status of this Memo
This document specifies an Internet standards track protocol for the
Internet community, and requests discussion and suggestions for
improvements. Please refer to the current edition of the "Internet
Official Protocol Standards" (STD 1) for the standardization state
and status of this protocol. Distribution of this memo is unlimited.
Copyright Notice
Copyright (C) The Internet Society (2005).
Abstract
The Access Control List (ACL) extension (<a href="./rfc2086">RFC 2086</a>) of the Internet
Message Access Protocol (IMAP) permits mailbox access control lists
to be retrieved and manipulated through the IMAP protocol.
This document is a revision of <a href="./rfc2086">RFC 2086</a>. It defines several new
access control rights and clarifies which rights are required for
different IMAP commands.
<span class="grey">Melnikov Standards Track [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc4314">RFC 4314</a> IMAP ACL December 2005</span>
Table of Contents
<a href="#section-1">1</a>. Introduction and Overview .......................................<a href="#page-3">3</a>
<a href="#section-1.1">1.1</a>. Conventions Used in This Document ..........................<a href="#page-3">3</a>
<a href="#section-2">2</a>. Access Control ..................................................<a href="#page-3">3</a>
<a href="#section-2.1">2.1</a>. Standard Rights ............................................<a href="#page-5">5</a>
<a href="#section-2.1.1">2.1.1</a>. Obsolete Rights .....................................<a href="#page-5">5</a>
<a href="#section-2.2">2.2</a>. Rights Defined in <a href="./rfc2086">RFC 2086</a> .................................<a href="#page-8">8</a>
<a href="#section-3">3</a>. Access control management commands and responses ................<a href="#page-8">8</a>
<a href="#section-3.1">3.1</a>. SETACL Command .............................................<a href="#page-8">8</a>
<a href="#section-3.2">3.2</a>. DELETEACL Command ..........................................<a href="#page-9">9</a>
<a href="#section-3.3">3.3</a>. GETACL Command ............................................<a href="#page-10">10</a>
<a href="#section-3.4">3.4</a>. LISTRIGHTS Command ........................................<a href="#page-10">10</a>
<a href="#section-3.5">3.5</a>. MYRIGHTS Command ..........................................<a href="#page-11">11</a>
<a href="#section-3.6">3.6</a>. ACL Response ..............................................<a href="#page-11">11</a>
<a href="#section-3.7">3.7</a>. LISTRIGHTS Response .......................................<a href="#page-12">12</a>
<a href="#section-3.8">3.8</a>. MYRIGHTS Response .........................................<a href="#page-12">12</a>
<a href="#section-4">4</a>. Rights Required to Perform Different IMAP4rev1 Commands ........<a href="#page-12">12</a>
<a href="#section-5">5</a>. Other Considerations ...........................................<a href="#page-17">17</a>
<a href="#section-5.1">5.1</a>. Additional Requirements and Implementation Notes ..........<a href="#page-17">17</a>
<a href="#section-5.1.1">5.1.1</a>. Servers ............................................<a href="#page-17">17</a>
<a href="#section-5.1.2">5.1.2</a>. Clients ............................................<a href="#page-18">18</a>
5.2. Mapping of ACL Rights to READ-WRITE and READ-ONLY
Response Codes ............................................<a href="#page-19">19</a>
<a href="#section-6">6</a>. Security Considerations ........................................<a href="#page-20">20</a>
<a href="#section-7">7</a>. Formal Syntax ..................................................<a href="#page-21">21</a>
<a href="#section-8">8</a>. IANA Considerations ............................................<a href="#page-22">22</a>
<a href="#section-9">9</a>. Internationalization Considerations ............................<a href="#page-22">22</a>
<a href="#appendix-A">Appendix A</a>. Changes since <a href="./rfc2086">RFC 2086</a> ................................<a href="#page-23">23</a>
<a href="#appendix-B">Appendix B</a>. Compatibility with <a href="./rfc2086">RFC 2086</a> ...........................<a href="#page-24">24</a>
<a href="#appendix-C">Appendix C</a>. Known Deficiencies ....................................<a href="#page-24">24</a>
<a href="#appendix-D">Appendix D</a>. Acknowledgements ......................................<a href="#page-25">25</a>
Normative References ..............................................<a href="#page-25">25</a>
Informative References ............................................<a href="#page-25">25</a>
<span class="grey">Melnikov Standards Track [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc4314">RFC 4314</a> IMAP ACL December 2005</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction and Overview</span>
The ACL (Access Control List) extension of the Internet Message
Access Protocol [<a href="#ref-IMAP4" title=""INTERNET MESSAGE ACCESS PROTOCOL - VERSION 4rev1"">IMAP4</a>] permits mailbox access control lists to be
retrieved and manipulated through the IMAP protocol.
This document is a revision of <a href="./rfc2086">RFC 2086</a> [<a href="./rfc2086" title=""IMAP4 ACL extension"">RFC2086</a>]. It tries to
clarify different ambiguities in <a href="./rfc2086">RFC 2086</a>, in particular, the use of
UTF-8 [<a href="#ref-UTF-8" title=""UTF-8, a transformation format of ISO 10646"">UTF-8</a>] in access identifiers, which rights are required for
different IMAP4 commands, and how READ-WRITE/READ-ONLY response codes
are related to ACL.
<span class="h3"><a class="selflink" id="section-1.1" href="#section-1.1">1.1</a>. Conventions Used in This Document</span>
In examples, "C:" and "S:" indicate lines sent by the client and
server respectively.
In all examples "/" character is used as hierarchy separator.
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in <a href="./rfc2119">RFC 2119</a> [<a href="#ref-KEYWORDS" title=""Key words for use in RFCs to Indicate Requirement Levels"">KEYWORDS</a>].
The phrase "ACL server" is just a shortcut for saying "IMAP server
that supports ACL extension as defined in this document".
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Access Control</span>
The ACL extension is present in any IMAP4 implementation that returns
"ACL" as one of the supported capabilities to the CAPABILITY command.
A server implementation conformant to this document MUST also return
rights (see below) not defined in <a href="#section-2.2">Section 2.2</a> in the "RIGHTS="
capability.
An access control list is a set of <access identifier,rights> pairs.
An ACL applies to a mailbox name.
Access identifier (or just "identifier") is a UTF-8 [<a href="#ref-UTF-8" title=""UTF-8, a transformation format of ISO 10646"">UTF-8</a>] string.
The identifier "anyone" is reserved to refer to the universal
identity (all authentications, including anonymous). All user name
strings accepted by the LOGIN or AUTHENTICATE commands to
authenticate to the IMAP server are reserved as identifiers for the
corresponding users. Identifiers starting with a dash ("-") are
reserved for "negative rights", described below. All other
identifier strings are interpreted in an implementation-defined
manner.
<span class="grey">Melnikov Standards Track [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc4314">RFC 4314</a> IMAP ACL December 2005</span>
Rights is a string listing a (possibly empty) set of alphanumeric
characters, each character listing a set of operations that is being
controlled. Lowercase letters are reserved for "standard" rights,
listed in <a href="#section-2.1">Section 2.1</a>. (Note that for compatibility with deployed
clients and servers uppercase rights are not allowed.) The set of
standard rights can only be extended by a standards-track document.
Digits are reserved for implementation- or site-defined rights.
An implementation MAY tie rights together or MAY force rights to
always or never be granted to particular identifiers. For example,
in an implementation that uses UNIX mode bits, the rights "swite" are
tied, the "a" right is always granted to the owner of a mailbox and
is never granted to another user. If rights are tied in an
implementation, the implementation must be conservative in granting
rights in response to SETACL commands--unless all rights in a tied
set are specified, none of that set should be included in the ACL
entry for that identifier. A client can discover the set of rights
that may be granted to a given identifier in the ACL for a given
mailbox name by using the LISTRIGHTS command.
It is possible for multiple identifiers in an access control list to
apply to a given user. For example, an ACL may include rights to be
granted to the identifier matching the user, one or more
implementation-defined identifiers matching groups that include the
user, and/or the identifier "anyone". How these rights are combined
to determine the user's access is implementation defined. An
implementation may choose, for example, to use the union of the
rights granted to the applicable identifiers. An implementation may
instead choose, for example, to use only those rights granted to the
most specific identifier present in the ACL. A client can determine
the set of rights granted to the logged-in user for a given mailbox
name by using the MYRIGHTS command.
When an identifier in an ACL starts with a dash ("-"), that indicates
that associated rights are to be removed from the identifier prefixed
by the dash. This is referred to as a "negative right". This
differs from DELETEACL in that a negative right is added to the ACL
and is a part of the calculation of the rights.
Let's assume that an identifier "fred" refers to a user with login
"fred". If the identifier "-fred" is granted the "w" right, that
indicates that the "w" right is to be removed from users matching the
identifier "fred", even though the user "fred" might have the "w"
right as a consequence of some other identifier in the ACL. A
DELETEACL of "fred" simply deletes the identifier "fred" from the
ACL; it does not affect any rights that the user "fred" may get from
another entry in the ACL, in particular it doesn't affect rights
granted to the identifier "-fred".
<span class="grey">Melnikov Standards Track [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc4314">RFC 4314</a> IMAP ACL December 2005</span>
Server implementations are not required to support "negative right"
identifiers.
<span class="h3"><a class="selflink" id="section-2.1" href="#section-2.1">2.1</a>. Standard Rights</span>
The currently defined standard rights are (note that the list below
doesn't list all commands that use a particular right):
l - lookup (mailbox is visible to LIST/LSUB commands, SUBSCRIBE
mailbox)
r - read (SELECT the mailbox, perform STATUS)
s - keep seen/unseen information across sessions (set or clear
\SEEN flag via STORE, also set \SEEN during APPEND/COPY/
FETCH BODY[...])
w - write (set or clear flags other than \SEEN and \DELETED via
STORE, also set them during APPEND/COPY)
i - insert (perform APPEND, COPY into mailbox)
p - post (send mail to submission address for mailbox,
not enforced by IMAP4 itself)
k - create mailboxes (CREATE new sub-mailboxes in any
implementation-defined hierarchy, parent mailbox for the new
mailbox name in RENAME)
x - delete mailbox (DELETE mailbox, old mailbox name in RENAME)
t - delete messages (set or clear \DELETED flag via STORE, set
\DELETED flag during APPEND/COPY)
e - perform EXPUNGE and expunge as a part of CLOSE
a - administer (perform SETACL/DELETEACL/GETACL/LISTRIGHTS)
<span class="h4"><a class="selflink" id="section-2.1.1" href="#section-2.1.1">2.1.1</a>. Obsolete Rights</span>
Due to ambiguity in <a href="./rfc2086">RFC 2086</a>, some existing <a href="./rfc2086">RFC 2086</a> server
implementations use the "c" right to control the DELETE command.
Others chose to use the "d" right to control the DELETE command. For
the former group, let's define the "create" right as union of the "k"
and "x" rights, and the "delete" right as union of the "e" and "t"
rights. For the latter group, let's define the "create" rights as a
synonym to the "k" right, and the "delete" right as union of the "e",
"t", and "x" rights.
For compatibility with <a href="./rfc2086">RFC 2086</a>, this section defines two virtual
rights "d" and "c".
If a client includes the "d" right in a rights list, then it MUST be
treated as if the client had included every member of the "delete"
right. (It is not an error for a client to specify both the "d"
right and one or more members of the "delete" right, but the effect
is no different than if just the "d" right or all members of the
"delete" right had been specified.)
<span class="grey">Melnikov Standards Track [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc4314">RFC 4314</a> IMAP ACL December 2005</span>
When any of the "delete" member rights is set in a list of rights,
the server MUST also include the "d" right when returning the list in
a MYRIGHTS or ACL response. This is to enable older clients
conforming to <a href="./rfc2086">RFC 2086</a> to work with newer servers. (*)
Example: C: A001 SeTacl INBOX/Drafts David lrswida
S: A001 OK Setacl complete
The client has specified the "d" right in the SETACL command above
and it expands to "et" on the server:
C: A002 getacl INBOX/Drafts
S: * ACL INBOX Fred rwipslxcetda David lrswideta
S: A002 OK Getacl complete
If the identifier specified in the LISTRIGHTS command can be granted
any of the "delete" member rights on a mailbox, then the server MUST
include the "d" right in the corresponding LISTRIGHTS response. (*)
If the member rights aren't tied to non-member rights, then the "d"
right is returned by itself in the LISTRIGHTS response. If any of
the member rights needs to be tied to one (or more) non-member right,
then the "d" right and all of the member rights need to be tied to
the same non-member right(s) (**).
If a client includes the "c" right in a rights list, then it MUST be
treated as if the client had included every member of the "create"
right. (It is not an error for a client to specify both the "c"
right and one or more members of the "create" right, but the effect
is no different than if just the "c" right or all members of the
"create" right had been specified.)
When any of the "create" member rights is set in a list of rights,
the server MUST also include the "c" right when returning the list in
a MYRIGHTS or ACL response. This is to enable older clients
conforming to <a href="./rfc2086">RFC 2086</a> to work with newer servers. (*)
Example: C: A003 Setacl INBOX/Drafts Byron lrswikda
S: A001 OK Setacl complete
C: A002 getAcl INBOX/Drafts
S: * ACL INBOX Fred rwipslxcetda Byron lrswikcdeta
S: A002 OK Getacl complete
The client has specified the "d" right in the SETACL command above
and it expands to "et" on the server: As the client has specified the
"k" right (which is a member of the "c" right), the server also
returns the "c" right.
<span class="grey">Melnikov Standards Track [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc4314">RFC 4314</a> IMAP ACL December 2005</span>
If the identifier specified in the LISTRIGHTS command can be granted
any of the "create" member rights on a mailbox, then the server MUST
include the "c" right in the corresponding LISTRIGHTS response. (*)
If the member rights aren't tied to non-member rights, then the "c"
right is returned by itself in the LISTRIGHTS response. If any of
the member rights needs to be tied to one (or more) non-member right,
then the "c" right and all of the member rights need to be tied to
the same non-member right(s) (**).
Example: The server that ties the rights as follows:
lr s w i p k x t
and c=k
will return:
S: * LISTRIGHTS archive/imap anyone ""
lr s w i p k x t c d
Example: The server that ties the rights as follows:
lr s w i p k xte
and c=k
will return:
S: * LISTRIGHTS archive/imap anyone ""
lr s w i p k xte c d
Example: The server that ties the rights as follows:
lr s w i p k x te
and c=k
will return:
S: * LISTRIGHTS archive/imap anyone ""
lr s w i p k c x te d
Example: The server that ties the rights as follows:
lr swte i p k x
and c=kx
<span class="grey">Melnikov Standards Track [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc4314">RFC 4314</a> IMAP ACL December 2005</span>
will return:
S: * LISTRIGHTS archive/imap anyone ""
lr swted i p k x c
(*) Clients conforming to this document MUST ignore the virtual "d"
and "c" rights in MYRIGHTS, ACL, and LISTRIGHTS responses.
(**) The IMAPEXT Working Group has debated this issue in great length
and after reviewing existing ACL implementations concluded that
this is a reasonable restriction.
<span class="h3"><a class="selflink" id="section-2.2" href="#section-2.2">2.2</a>. Rights Defined in <a href="./rfc2086">RFC 2086</a></span>
The "RIGHTS=" capability MUST NOT include any of the rights defined
in <a href="./rfc2086">RFC 2086</a>: "l", "r", "s", "w", "i", "p", "a", "c", "d", and the
digits ("0" .. "9").
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Access control management commands and responses</span>
Servers, when processing a command that has an identifier as a
parameter (i.e., any of SETACL, DELETEACL, and LISTRIGHTS commands),
SHOULD first prepare the received identifier using "SASLprep" profile
[<a href="#ref-SASLprep" title=""SASLprep: Stringprep Profile for User Names and Passwords"">SASLprep</a>] of the "stringprep" algorithm [<a href="#ref-Stringprep" title=""Preparation of Internationalized Strings ("">Stringprep</a>]. If the
preparation of the identifier fails or results in an empty string,
the server MUST refuse to perform the command with a BAD response.
Note that <a href="#section-6">Section 6</a> recommends additional identifier's verification
steps.
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>. SETACL Command</span>
Arguments: mailbox name
identifier
access right modification
Data: no specific data for this command
Result: OK - setacl completed
NO - setacl failure: can't set acl
BAD - arguments invalid
The SETACL command changes the access control list on the specified
mailbox so that the specified identifier is granted permissions as
specified in the third argument.
The third argument is a string containing an optional plus ("+") or
minus ("-") prefix, followed by zero or more rights characters. If
the string starts with a plus, the following rights are added to any
<span class="grey">Melnikov Standards Track [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc4314">RFC 4314</a> IMAP ACL December 2005</span>
existing rights for the identifier. If the string starts with a
minus, the following rights are removed from any existing rights for
the identifier. If the string does not start with a plus or minus,
the rights replace any existing rights for the identifier.
Note that an unrecognized right MUST cause the command to return the
BAD response. In particular, the server MUST NOT silently ignore
unrecognized rights.
Example: C: A001 GETACL INBOX/Drafts
S: * ACL INBOX/Drafts Fred rwipslxetad Chris lrswi
S: A001 OK Getacl complete
C: A002 SETACL INBOX/Drafts Chris +cda
S: A002 OK Setacl complete
C: A003 GETACL INBOX/Drafts
S: * ACL INBOX/Drafts Fred rwipslxetad Chris lrswicdakxet
S: A003 OK Getacl complete
C: A035 SETACL INBOX/Drafts John lrQswicda
S: A035 BAD Uppercase rights are not allowed
C: A036 SETACL INBOX/Drafts John lrqswicda
S: A036 BAD The q right is not supported
<span class="h3"><a class="selflink" id="section-3.2" href="#section-3.2">3.2</a>. DELETEACL Command</span>
Arguments: mailbox name
identifier
Data: no specific data for this command
Result: OK - deleteacl completed
NO - deleteacl failure: can't delete acl
BAD - arguments invalid
The DELETEACL command removes any <identifier,rights> pair for the
specified identifier from the access control list for the specified
mailbox.
Example: C: B001 getacl INBOX
S: * ACL INBOX Fred rwipslxetad -Fred wetd $team w
S: B001 OK Getacl complete
C: B002 DeleteAcl INBOX Fred
S: B002 OK Deleteacl complete
<span class="grey">Melnikov Standards Track [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc4314">RFC 4314</a> IMAP ACL December 2005</span>
C: B003 GETACL INBOX
S: * ACL INBOX -Fred wetd $team w
S: B003 OK Getacl complete
<span class="h3"><a class="selflink" id="section-3.3" href="#section-3.3">3.3</a>. GETACL Command</span>
Arguments: mailbox name
Data: untagged responses: ACL
Result: OK - getacl completed
NO - getacl failure: can't get acl
BAD - arguments invalid
The GETACL command returns the access control list for mailbox in an
untagged ACL response.
Some implementations MAY permit multiple forms of an identifier to
reference the same IMAP account. Usually, such implementations will
have a canonical form that is stored internally. An ACL response
caused by a GETACL command MAY include a canonicalized form of the
identifier that might be different from the one used in the
corresponding SETACL command.
Example: C: A002 GETACL INBOX
S: * ACL INBOX Fred rwipsldexta
S: A002 OK Getacl complete
<span class="h3"><a class="selflink" id="section-3.4" href="#section-3.4">3.4</a>. LISTRIGHTS Command</span>
Arguments: mailbox name
identifier
Data: untagged responses: LISTRIGHTS
Result: OK - listrights completed
NO - listrights failure: can't get rights list
BAD - arguments invalid
The LISTRIGHTS command takes a mailbox name and an identifier and
returns information about what rights can be granted to the
identifier in the ACL for the mailbox.
Some implementations MAY permit multiple forms of an identifier to
reference the same IMAP account. Usually, such implementations will
have a canonical form that is stored internally. A LISTRIGHTS
<span class="grey">Melnikov Standards Track [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc4314">RFC 4314</a> IMAP ACL December 2005</span>
response caused by a LISTRIGHTS command MUST always return the same
form of an identifier as specified by the client. This is to allow
the client to correlate the response with the command.
Example: C: a001 LISTRIGHTS ~/Mail/saved smith
S: * LISTRIGHTS ~/Mail/saved smith la r swicdkxte
S: a001 OK Listrights completed
Example: C: a005 listrights archive/imap anyone
S: * LISTRIGHTS archive.imap anyone ""
l r s w i p k x t e c d a 0 1 2 3 4 5 6 7 8 9
S: a005 Listrights successful
<span class="h3"><a class="selflink" id="section-3.5" href="#section-3.5">3.5</a>. MYRIGHTS Command</span>
Arguments: mailbox name
Data: untagged responses: MYRIGHTS
Result: OK - myrights completed
NO - myrights failure: can't get rights
BAD - arguments invalid
The MYRIGHTS command returns the set of rights that the user has to
mailbox in an untagged MYRIGHTS reply.
Example: C: A003 MYRIGHTS INBOX
S: * MYRIGHTS INBOX rwiptsldaex
S: A003 OK Myrights complete
<span class="h3"><a class="selflink" id="section-3.6" href="#section-3.6">3.6</a>. ACL Response</span>
Data: mailbox name
zero or more identifier rights pairs
The ACL response occurs as a result of a GETACL command. The first
string is the mailbox name for which this ACL applies. This is
followed by zero or more pairs of strings; each pair contains the
identifier for which the entry applies followed by the set of rights
that the identifier has.
<a href="#section-2.1.1">Section 2.1.1</a> details additional server requirements related to
handling of the virtual "d" and "c" rights.
<span class="grey">Melnikov Standards Track [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc4314">RFC 4314</a> IMAP ACL December 2005</span>
<span class="h3"><a class="selflink" id="section-3.7" href="#section-3.7">3.7</a>. LISTRIGHTS Response</span>
Data: mailbox name
identifier
required rights
list of optional rights
The LISTRIGHTS response occurs as a result of a LISTRIGHTS command.
The first two strings are the mailbox name and identifier for which
this rights list applies. Following the identifier is a string
containing the (possibly empty) set of rights the identifier will
always be granted in the mailbox.
Following this are zero or more strings each containing a set of
rights the identifier can be granted in the mailbox. Rights
mentioned in the same string are tied together. The server MUST
either grant all tied rights to the identifier in the mailbox or
grant none. <a href="#section-2.1.1">Section 2.1.1</a> details additional server requirements
related to handling of the virtual "d" and "c" rights.
The same right MUST NOT be listed more than once in the LISTRIGHTS
command.
<span class="h3"><a class="selflink" id="section-3.8" href="#section-3.8">3.8</a>. MYRIGHTS Response</span>
Data: mailbox name
rights
The MYRIGHTS response occurs as a result of a MYRIGHTS command. The
first string is the mailbox name for which these rights apply. The
second string is the set of rights that the client has.
<a href="#section-2.1.1">Section 2.1.1</a> details additional server requirements related to
handling of the virtual "d" and "c" rights.
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Rights Required to Perform Different IMAP4rev1 Commands</span>
Before executing a command, an ACL-compliant server MUST check which
rights are required to perform it. This section groups command by
functions they perform and list the rights required. It also gives
the detailed description of any special processing required.
For the purpose of this section the UID counterpart of a command is
considered to be the same command, e.g., both UID COPY and COPY
commands require the same set of rights.
<span class="grey">Melnikov Standards Track [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc4314">RFC 4314</a> IMAP ACL December 2005</span>
The table below summarizes different rights or their combinations
that are required in order to perform different IMAP operations. As
it is not always possible to express complex right checking and
interactions, the description after the table should be used as the
primary reference.
+-------------------+---+---+---+---+---+---+---+---+---+---+---+---+
|Operations\Rights | l | r | s | w | i | k | x | t | e | a |Any|Non|
+-------------------+---+---+---+---+---+---+---+---+---+---+---+---+
| commands in authenticated state |
+-------------------------------------------------------------------+
| LIST | + | | | | | | | | | | | |
| SUBSCRIBE | * | | | | | | | | | | | * |
| UNSUBSCRIBE | | | | | | | | | | | | + |
| LSUB | * | | | | | | | | | | | * |
|CREATE (for parent)| | | | | | + | | | | | | |
| DELETE | | ? | | | | | + | ? | ? | | | |
| RENAME | | | | | | + | + | | | | | |
| SELECT/EXAMINE | | + | | | | | | | | | | |
| STATUS | | + | | | | | | | | | | |
| SETACL/DELETEACL | | | | | | | | | | + | | |
| GETACL/LISTRIGHTS | | | | | | | | | | + | | |
| MYRIGHTS | | | | | | | | | | | + | |
| APPEND | | | ? | ? | + | | | ? | | | | |
+-------------------------------------------------------------------+
| commands in selected state |
+-------------------------------------------------------------------+
| COPY | | | ? | ? | + | | | ? | | | | |
| EXPUNGE | | | | | | | | | + | | | |
| CLOSE | | | | | | | | | ? | | | |
| FETCH | | | ? | | | | | | | | | |
| STORE flags | | | ? | ? | | | | ? | | | | |
+-------------------+---+---+---+---+---+---+---+---+---+---+---+---+
Note: for all commands in the selected state, the "r" is implied,
because it is required to SELECT/EXAMINE a mailbox. Servers are not
required to check presence of the "r" right once a mailbox is
successfully selected.
Legend:
+ - The right is required
* - Only one of the rights marked with * is required
(see description below)
? - The right is OPTIONAL (see description below)
"Any" - at least one of the "l", "r", "i", "k", "x", "a" rights is
required
"Non" - No rights required to perform the command
<span class="grey">Melnikov Standards Track [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc4314">RFC 4314</a> IMAP ACL December 2005</span>
Listing and subscribing/unsubscribing mailboxes:
LIST - "l" right is required. However, unlike other commands
(e.g., SELECT) the server MUST NOT return a NO response if it
can't list a mailbox.
Note that if the user has "l" right to a mailbox "A/B", but not to
its parent mailbox "A", the LIST command should behave as if the
mailbox "A" doesn't exist, for example:
C: A777 LIST "" *
S: * LIST (\NoInferiors) "/" "A/B"
S: * LIST () "/" "C"
S: * LIST (\NoInferiors) "/" "C/D"
S: A777 OK LIST completed
SUBSCRIBE - "l" right is required only if the server checks for
mailbox existence when performing SUBSCRIBE.
UNSUBSCRIBE - no rights required to perform this operation.
LSUB - "l" right is required only if the server checks for mailbox
existence when performing SUBSCRIBE. However, unlike other
commands (e.g., SELECT) the server MUST NOT return a NO response
if it can't list a subscribed mailbox.
Mailbox management:
CREATE - "k" right on a nearest existing parent mailbox. When a
new mailbox is created, it SHOULD inherit the ACL from the parent
mailbox (if one exists) in the defined hierarchy.
DELETE - "x" right on the mailbox. Note that some servers don't
allow to delete a non-empty mailbox. If this is the case, the
user would also need "r", "e", and "t" rights, in order to open
the mailbox and empty it.
The DELETE command MUST delete the ACL associated with the deleted
mailbox.
RENAME - Moving a mailbox from one parent to another requires the
"x" right on the mailbox itself and the "k" right for the new
parent. For example, if the user wants to rename the mailbox
named "A/B/C" to "D/E", the user must have the "x" right for the
mailbox "A/B/C" and the "k" right for the mailbox "D".
The RENAME command SHOULD NOT change the ACLs on the renamed
mailbox and submailboxes.
<span class="grey">Melnikov Standards Track [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc4314">RFC 4314</a> IMAP ACL December 2005</span>
Copying or appending messages:
Before performing a COPY/APPEND command, the server MUST check if
the user has "i" right for the target mailbox. If the user
doesn't have "i" right, the operation fails. Otherwise for each
copied/appended message the server MUST check if the user has
"t" right - when the message has \Deleted flag set
"s" right - when the message has \Seen flag set
"w" right - for all other message flags.
Only when the user has a particular right are the corresponding
flags stored for the newly created message. The server MUST NOT
fail a COPY/APPEND if the user has no rights to set a particular
flag.
Example: C: A003 MYRIGHTS TargetMailbox
S: * MYRIGHTS TargetMailbox rwis
S: A003 OK Myrights complete
C: A004 FETCH 1:3 (FLAGS)
S: * 1 FETCH (FLAGS (\Draft \Deleted)
S: * 2 FETCH (FLAGS (\Answered)
S: * 3 FETCH (FLAGS ($Forwarded \Seen)
S: A004 OK Fetch Completed
C: A005 COPY 1:3 TargetMailbox
S: A005 OK Copy completed
C: A006 SELECT TargetMailbox
...
S: A006 Select Completed
Let's assume that the copied messages received message numbers
77:79.
C: A007 FETCH 77:79 (FLAGS)
S: * 77 FETCH (FLAGS (\Draft))
S: * 78 FETCH (FLAGS (\Answered))
S: * 79 FETCH (FLAGS ($Forwarded \Seen))
S: A007 OK Fetch Completed
\Deleted flag was lost on COPY, as the user has no "t" right in
the target mailbox.
If the MYRIGHTS command with the tag A003 would have returned:
S: * MYRIGHTS TargetMailbox rsti
the response from the FETCH with the tag A007 would have been:
C: A007 FETCH 77:79 (FLAGS)
<span class="grey">Melnikov Standards Track [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc4314">RFC 4314</a> IMAP ACL December 2005</span>
S: * 77 FETCH (FLAGS (\Deleted))
S: * 78 FETCH (FLAGS ())
S: * 79 FETCH (FLAGS (\Seen))
S: A007 OK Fetch Completed
In the latter case, \Answered, $Forwarded, and \Draft flags were
lost on COPY, as the user has no "w" right in the target mailbox.
Expunging the selected mailbox:
EXPUNGE - "e" right on the selected mailbox.
CLOSE - "e" right on the selected mailbox. If the server is
unable to expunge the mailbox because the user doesn't have the
"e" right, the server MUST ignore the expunge request, close the
mailbox, and return the tagged OK response.
Fetch information about a mailbox and its messages:
SELECT/EXAMINE/STATUS - "r" right on the mailbox.
FETCH - A FETCH request that implies setting \Seen flag MUST NOT
set it, if the current user doesn't have "s" right.
Changing flags:
STORE - the server MUST check if the user has
"t" right - when the user modifies \Deleted flag
"s" right - when the user modifies \Seen flag
"w" right - for all other message flags.
STORE operation SHOULD NOT fail if the user has rights to modify
at least one flag specified in the STORE, as the tagged NO
response to a STORE command is not handled very well by deployed
clients.
Changing ACLs:
SETACL/DELETEACL - "a" right on the mailbox.
Reading ACLs:
GETACL - "a" right on the mailbox.
MYRIGHTS - any of the following rights is required to perform the
operation: "l", "r", "i", "k", "x", "a".
LISTRIGHTS - "a" right on the mailbox.
<span class="grey">Melnikov Standards Track [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc4314">RFC 4314</a> IMAP ACL December 2005</span>
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Other Considerations</span>
<span class="h3"><a class="selflink" id="section-5.1" href="#section-5.1">5.1</a>. Additional Requirements and Implementation Notes</span>
<span class="h4"><a class="selflink" id="section-5.1.1" href="#section-5.1.1">5.1.1</a>. Servers</span>
This document defines an additional capability that is used to
announce the list of extra rights (excluding the ones defined in <a href="./rfc2086">RFC</a>
<a href="./rfc2086">2086</a>) supported by the server. The set of rights MUST include "t",
"e", "x", and "k". Note that the extra rights can appear in any
order.
Example: C: 1 capability
S: * CAPABILITY IMAP4REV1 STARTTLS LITERAL+
ACL RIGHTS=texk
S: 1 OK completed
Any server implementing an ACL extension MUST accurately reflect the
current user's rights in FLAGS and PERMANENTFLAGS responses.
Example: C: A142 SELECT INBOX
S: * 172 EXISTS
S: * 1 RECENT
S: * OK [UNSEEN 12] Message 12 is first unseen
S: * OK [UIDVALIDITY 3857529045] UIDs valid
S: * OK [UIDNEXT 4392] Predicted next UID
S: * FLAGS (\Answered \Flagged \Deleted \Seen \Draft)
S: * OK [PERMANENTFLAGS (\Seen \Answered \Flagged \*)] L
S: A142 OK [READ-WRITE] SELECT completed
C: A143 MYRIGHTS INBOX
S: * MYRIGHTS INBOX lrwis
S: A143 OK completed
Note that in order to get better performance the client MAY pipeline
SELECT and MYRIGHTS commands:
C: A142 SELECT INBOX
C: A143 MYRIGHTS INBOX
S: * 172 EXISTS
S: * 1 RECENT
S: * OK [UNSEEN 12] Message 12 is first unseen
S: * OK [UIDVALIDITY 3857529045] UIDs valid
S: * OK [UIDNEXT 4392] Predicted next UID
S: * FLAGS (\Answered \Flagged \Deleted \Seen \Draft)
S: * OK [PERMANENTFLAGS (\Seen \Answered \Flagged \*)] L
S: A142 OK [READ-WRITE] SELECT completed
S: * MYRIGHTS INBOX lrwis
S: A143 OK completed
<span class="grey">Melnikov Standards Track [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc4314">RFC 4314</a> IMAP ACL December 2005</span>
Servers MAY cache the rights a user has on a mailbox when the mailbox
is selected, so that if a client's rights on a mailbox are changed
with SETACL or DELETEACL, commands specific to the selected state
(e.g., STORE, EXPUNGE) might not reflect the changed rights until the
mailbox is re-selected. If the server checks the rights on each
command, then it SHOULD send FLAGS and PERMANENTFLAGS responses if
they have changed. If such server detects that the user no longer
has read access to the mailbox, it MAY send an untagged BYE response
and close connection. It MAY also refuse to execute all commands
specific to the selected state until the mailbox is closed; however,
server implementors should note that most clients don't handle NO
responses very well.
An ACL server MAY modify one or more ACLs for one or more identifiers
as a side effect of modifying the ACL specified in a
SETACL/DELETEACL. If the server does that, it MUST send untagged ACL
response(s) to notify the client about the changes made.
An ACL server implementation MUST treat received ACL modification
commands as a possible ambiguity with respect to subsequent commands
affected by the ACL, as described in Section 5.5 of [<a href="#ref-IMAP4" title=""INTERNET MESSAGE ACCESS PROTOCOL - VERSION 4rev1"">IMAP4</a>]. Hence a
pipeline SETACL + MYRIGHTS is an ambiguity with respect to the
server, meaning that the server must execute the SETACL command to
completion before the MYRIGHTS. However, clients are permitted to
send such a pipeline.
<span class="h4"><a class="selflink" id="section-5.1.2" href="#section-5.1.2">5.1.2</a>. Clients</span>
The following requirement is put on clients in order to allow for
future extensibility. A client implementation that allows a user to
read and update ACLs MUST preserve unrecognized rights that it
doesn't allow the user to change. That is, if the client
1) can read ACLs
and
2) can update ACLs
but
3) doesn't allow the user to change the rights the client doesn't
recognize, then it MUST preserve unrecognized rights.
Otherwise the client could risk unintentionally removing permissions
it doesn't understand.
<span class="grey">Melnikov Standards Track [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc4314">RFC 4314</a> IMAP ACL December 2005</span>
<span class="h3"><a class="selflink" id="section-5.2" href="#section-5.2">5.2</a>. Mapping of ACL Rights to READ-WRITE and READ-ONLY Response Codes</span>
A particular ACL server implementation MAY allow "shared multiuser
access" to some mailboxes. "Shared multiuser access" to a mailbox
means that multiple different users are able to access the same
mailbox, if they have proper access rights. "Shared multiuser
access" to the mailbox doesn't mean that the ACL for the mailbox is
currently set to allow access by multiple users. Let's denote a
"shared multiuser write access" as a "shared multiuser access" when a
user can be granted flag modification rights (any of "w", "s", or
"t").
<a href="#section-4">Section 4</a> describes which rights are required for modifying different
flags.
If the ACL server implements some flags as shared for a mailbox
(i.e., the ACL for the mailbox MAY be set up so that changes to those
flags are visible to another user), let's call the set of rights
associated with these flags (as described in <a href="#section-4">Section 4</a>) for that
mailbox collectively as "shared flag rights". Note that the "shared
flag rights" set MAY be different for different mailboxes.
If the server doesn't support "shared multiuser write access" to a
mailbox or doesn't implement shared flags on the mailbox, "shared
flag rights" for the mailbox is defined to be the empty set.
Example 1: Mailbox "banan" allows "shared multiuser write access" and
implements flags \Deleted, \Answered, and $MDNSent as
shared flags. "Shared flag rights" for the mailbox "banan"
is a set containing flags "t" (because system flag
\Deleted requires "t" right) and "w" (because both
\Answered and $MDNSent require "w" right).
Example 2: Mailbox "apple" allows "shared multiuser write access" and
implements \Seen system flag as shared flag. "Shared flag
rights" for the mailbox "apple" contains "s" right
because system flag \Seen requires "s" right.
Example 3: Mailbox "pear" allows "shared multiuser write access" and
implements flags \Seen, \Draft as shared flags. "Shared
flag rights" for the mailbox "apple" is a set containing
flags "s" (because system flag \Seen requires "s" right)
and "w" (because system flag \Draft requires "w" right).
The server MUST include a READ-ONLY response code in the tagged OK
response to a SELECT command if none of the following rights is
granted to the current user:
<span class="grey">Melnikov Standards Track [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc4314">RFC 4314</a> IMAP ACL December 2005</span>
"i", "e", and "shared flag rights"(***).
The server SHOULD include a READ-WRITE response code in the tagged OK
response if at least one of the "i", "e", or "shared flag
rights"(***) is granted to the current user.
(***) Note that a future extension to this document can extend the
list of rights that causes the server to return the READ-WRITE
response code.
Example 1 (continued): The user that has "lrs" rights for the mailbox
"banan". The server returns READ-ONLY
response code on SELECT, as none of "iewt"
rights is granted to the user.
Example 2 (continued): The user that has "rit" rights for the mailbox
"apple". The server returns READ-WRITE
response code on SELECT, as the user has "i"
right.
Example 3 (continued): The user that has "rset" rights for the
mailbox "pear". The server returns READ-WRITE
response code on SELECT, as the user has "e"
and "s" rights.
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. Security Considerations</span>
An implementation MUST make sure the ACL commands themselves do not
give information about mailboxes with appropriately restricted ACLs.
For example, when a user agent executes a GETACL command on a mailbox
that the user has no permission to LIST, the server would respond to
that request with the same error that would be used if the mailbox
did not exist, thus revealing no existence information, much less the
mailbox's ACL.
IMAP clients implementing ACL that are able to modify ACLs SHOULD
warn a user that wants to give full access (or even just the "a"
right) to the special identifier "anyone".
This document relies on [<a href="#ref-SASLprep" title=""SASLprep: Stringprep Profile for User Names and Passwords"">SASLprep</a>] to describe steps required to
perform identifier canonicalization (preparation). The preparation
algorithm in SASLprep was specifically designed such that its output
is canonical, and it is well-formed. However, due to an anomaly
[<a href="#ref-PR29" title=""Public Review Issue #29: Normalization Issue"">PR29</a>] in the specification of Unicode normalization, canonical
equivalence is not guaranteed for a select few character sequences.
Identifiers prepared with SASLprep can be stored and returned by an
ACL server. The anomaly affects ACL manipulation and evaluation of
identifiers containing the selected character sequences. These
<span class="grey">Melnikov Standards Track [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc4314">RFC 4314</a> IMAP ACL December 2005</span>
sequences, however, do not appear in well-formed text. In order to
address this problem, an ACL server MAY reject identifiers containing
sequences described in [<a href="#ref-PR29" title=""Public Review Issue #29: Normalization Issue"">PR29</a>] by sending the tagged BAD response.
This is in addition to the requirement to reject identifiers that
fail SASLprep preparation as described in <a href="#section-3">Section 3</a>.
Other security considerations described in [<a href="#ref-IMAP4" title=""INTERNET MESSAGE ACCESS PROTOCOL - VERSION 4rev1"">IMAP4</a>] are relevant to
this document. In particular, ACL information is sent in the clear
over the network unless confidentiality protection is negotiated.
This can be accomplished either by the use of STARTTLS, negotiated
privacy protection in the AUTHENTICATE command, or some other
protection mechanism.
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. Formal Syntax</span>
Formal syntax is defined using ABNF [<a href="#ref-ABNF" title=""Augmented BNF for Syntax Specifications: ABNF"">ABNF</a>], extending the ABNF rules
in Section 9 of [<a href="#ref-IMAP4" title=""INTERNET MESSAGE ACCESS PROTOCOL - VERSION 4rev1"">IMAP4</a>]. Elements not defined here can be found in
[<a href="#ref-ABNF" title=""Augmented BNF for Syntax Specifications: ABNF"">ABNF</a>] and [<a href="#ref-IMAP4" title=""INTERNET MESSAGE ACCESS PROTOCOL - VERSION 4rev1"">IMAP4</a>].
Except as noted otherwise, all alphabetic characters are case
insensitive. The use of uppercase or lowercase characters to define
token strings is for editorial clarity only. Implementations MUST
accept these strings in a case-insensitive fashion.
LOWER-ALPHA = %x61-7A ;; a-z
acl-data = "ACL" SP mailbox *(SP identifier SP
rights)
capability =/ rights-capa
;;capability is defined in [<a href="#ref-IMAP4" title=""INTERNET MESSAGE ACCESS PROTOCOL - VERSION 4rev1"">IMAP4</a>]
command-auth =/ setacl / deleteacl / getacl /
listrights / myrights
;;command-auth is defined in [<a href="#ref-IMAP4" title=""INTERNET MESSAGE ACCESS PROTOCOL - VERSION 4rev1"">IMAP4</a>]
deleteacl = "DELETEACL" SP mailbox SP identifier
getacl = "GETACL" SP mailbox
identifier = astring
listrights = "LISTRIGHTS" SP mailbox SP identifier
listrights-data = "LISTRIGHTS" SP mailbox SP identifier
SP rights *(SP rights)
<span class="grey">Melnikov Standards Track [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc4314">RFC 4314</a> IMAP ACL December 2005</span>
mailbox-data =/ acl-data / listrights-data / myrights-data
;;mailbox-data is defined in [<a href="#ref-IMAP4" title=""INTERNET MESSAGE ACCESS PROTOCOL - VERSION 4rev1"">IMAP4</a>]
mod-rights = astring
;; +rights to add, -rights to remove
;; rights to replace
myrights = "MYRIGHTS" SP mailbox
myrights-data = "MYRIGHTS" SP mailbox SP rights
new-rights = 1*LOWER-ALPHA
;; MUST include "t", "e", "x", and "k".
;; MUST NOT include standard rights listed
;; in <a href="#section-2.2">section 2.2</a>
rights = astring
;; only lowercase ASCII letters and digits
;; are allowed.
rights-capa = "RIGHTS=" new-rights
;; RIGHTS=... capability
setacl = "SETACL" SP mailbox SP identifier
SP mod-rights
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. IANA Considerations</span>
IMAP4 capabilities are registered by publishing a standards-track or
IESG-approved experimental RFC. The registry is currently located
at:
<a href="http://www.iana.org/assignments/imap4-capabilities">http://www.iana.org/assignments/imap4-capabilities</a>
This document defines the RIGHTS= IMAP capability. IANA has added
this capability to the registry.
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. Internationalization Considerations</span>
<a href="#section-3">Section 3</a> states requirements on servers regarding
internationalization of identifiers.
<span class="grey">Melnikov Standards Track [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc4314">RFC 4314</a> IMAP ACL December 2005</span>
<span class="h2"><a class="selflink" id="appendix-A" href="#appendix-A">Appendix A</a>. Changes since <a href="./rfc2086">RFC 2086</a></span>
1. Changed the charset of "identifier" from US-ASCII to UTF-8.
2. Specified that mailbox deletion is controlled by the "x" right
and EXPUNGE is controlled by the "e" right.
3. Added the "t" right that controls STORE \Deleted. Redefined the
"d" right to be a macro for "e", "t", and possibly "x".
4. Added the "k" right that controls CREATE. Redefined the "c"
right to be a macro for "k" and possibly "x".
5. Specified that the "a" right also controls DELETEACL.
6. Specified that the "r" right also controls STATUS.
7. Removed the requirement to check the "r" right for CHECK, SEARCH
and FETCH, as this is required for SELECT/EXAMINE to be
successful.
8. LISTRIGHTS requires the "a" right on the mailbox (same as
SETACL).
9. Deleted "PARTIAL", this is a deprecated feature of <a href="./rfc1730">RFC 1730</a>.
10. Specified that the "w" right controls setting flags other than
\Seen and \Deleted on APPEND. Also specified that the "s" right
controls the \Seen flag and that the "t" right controls the
\Deleted flag.
11. Specified that SUBSCRIBE is NOT allowed with the "r" right.
12. Specified that the "l" right controls SUBSCRIBE.
13. GETACL is NOT allowed with the "r" right, even though there are
several implementations that allows that. If a user only has
"r" right, GETACL can disclose information about identifiers
existing on the mail system.
14. Clarified that RENAME requires the "k" right for the new parent
and the "x" right for the old name.
15. Added new section that describes which rights are required
and/or checked when performing various IMAP commands.
16. Added mail client security considerations when dealing with
special identifier "anyone".
17. Clarified that negative rights are not the same as DELETEACL.
18. Added "Compatibility with <a href="./rfc2086">RFC 2086</a>" section.
19. Added section about mapping of ACL rights to READ-WRITE and
READ-ONLY response codes.
20. Changed BNF to ABNF.
21. Added "Implementation Notes" section.
22. Updated "References" section.
23. Added more examples.
24. Clarified when the virtual "c" and "d" rights are returned in
ACL, MYRIGHTS, and LISTRIGHTS responses.
<span class="grey">Melnikov Standards Track [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc4314">RFC 4314</a> IMAP ACL December 2005</span>
<span class="h2"><a class="selflink" id="appendix-B" href="#appendix-B">Appendix B</a>. Compatibility with <a href="./rfc2086">RFC 2086</a></span>
This non-normative section gives guidelines as to how an existing <a href="./rfc2086">RFC</a>
<a href="./rfc2086">2086</a> server implementation may be updated to comply with this
document.
This document splits the "d" right into several new different rights:
"t", "e", and possibly "x" (see <a href="#section-2.1.1">Section 2.1.1</a> for more details). The
"d" right remains for backward-compatibility, but it is a virtual
right. There are two approaches for <a href="./rfc2086">RFC 2086</a> server implementors to
handle the "d" right and the new rights that have replaced it:
a. Tie "t", "e" (and possibly "x) together - almost no changes.
b. Implement separate "x", "t" and "e". Return the "d" right in a
MYRIGHTS response or an ACL response containing ACL information
when any of the "t", "e" (and "x") is granted.
In a similar manner this document splits the "c" right into several
new different rights: "k" and possibly "x" (see <a href="#section-2.1.1">Section 2.1.1</a> for
more details). The "c" right remains for backwards-compatibility but
it is a virtual right. Again, <a href="./rfc2086">RFC 2086</a> server implementors can
choose to tie rights or to implement separate rights, as described
above.
Also check Sections <a href="#section-5.1.1">5.1.1</a> and <a href="#section-5.1.2">5.1.2</a>, as well as <a href="#appendix-A">Appendix A</a>, to see
other changes required. Server implementors should check which
rights are required to invoke different IMAP4 commands as described
in <a href="#section-4">Section 4</a>.
<span class="h2"><a class="selflink" id="appendix-C" href="#appendix-C">Appendix C</a>. Known Deficiencies</span>
This specification has some known deficiencies including:
1. This is inadequate to provide complete read-write access to
mailboxes protected by Unix-style rights bits because there is no
equivalent to "chown" and "chgrp" commands nor is there a good
way to discover such limitations are present.
2. Because this extension leaves the specific semantics of how
rights are combined by the server as implementation defined, the
ability to build a user-friendly interface is limited.
3. Users, groups, and special identifiers (e.g., anyone) exist in
the same namespace.
The work-in-progress "ACL2" extension is intended to redesign this
extension to address these deficiencies without the constraint of
backward-compatibility and may eventually supercede this facility.
<span class="grey">Melnikov Standards Track [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc4314">RFC 4314</a> IMAP ACL December 2005</span>
However, <a href="./rfc2086">RFC 2086</a> is deployed in multiple implementations so this
intermediate step, which fixes the straightforward deficiencies in a
backward-compatible fashion, is considered worthwhile.
<span class="h2"><a class="selflink" id="appendix-D" href="#appendix-D">Appendix D</a>. Acknowledgements</span>
This document is a revision of <a href="./rfc2086">RFC 2086</a> written by John G. Myers.
Editor appreciates comments received from Mark Crispin, Chris Newman,
Cyrus Daboo, John G. Myers, Dave Cridland, Ken Murchison, Steve Hole,
Vladimir Butenko, Larry Greenfield, Robert Siemborski, Harrie
Hazewinkel, Philip Guenther, Brian Candler, Curtis King, Lyndon
Nerenberg, Lisa Dusseault, Arnt Gulbrandsen, and other participants
of the IMAPEXT working group.
Normative References
[<a id="ref-KEYWORDS">KEYWORDS</a>] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", <a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a>, <a href="./rfc2119">RFC 2119</a>, March 1997.
[<a id="ref-ABNF">ABNF</a>] Crocker, D. and P. Overell, "Augmented BNF for Syntax
Specifications: ABNF", <a href="./rfc4234">RFC 4234</a>, October 2005.
[<a id="ref-IMAP4">IMAP4</a>] Crispin, M., "INTERNET MESSAGE ACCESS PROTOCOL - VERSION
4rev1", <a href="./rfc3501">RFC 3501</a>, March 2003.
[<a id="ref-UTF-8">UTF-8</a>] Yergeau, F., "UTF-8, a transformation format of ISO
10646", STD 63, <a href="./rfc3629">RFC 3629</a>, November 2003.
[<a id="ref-Stringprep">Stringprep</a>] Hoffman, P. and M. Blanchet, "Preparation of
Internationalized Strings ("stringprep")", <a href="./rfc3454">RFC 3454</a>,
December 2002.
[<a id="ref-SASLprep">SASLprep</a>] Zeilenga, K., "SASLprep: Stringprep Profile for User
Names and Passwords", <a href="./rfc4013">RFC 4013</a>, February 2005.
Informative References
[<a id="ref-RFC2086">RFC2086</a>] Myers, J., "IMAP4 ACL extension", <a href="./rfc2086">RFC 2086</a>,
January 1997.
[<a id="ref-PR29">PR29</a>] "Public Review Issue #29: Normalization Issue",
February 2004,
<<a href="http://www.unicode.org/review/pr-29.html">http://www.unicode.org/review/pr-29.html</a>>.
<span class="grey">Melnikov Standards Track [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc4314">RFC 4314</a> IMAP ACL December 2005</span>
Author's Address
Alexey Melnikov
Isode Ltd.
5 Castle Business Village
36 Station Road
Hampton, Middlesex TW12 2BX
GB
EMail: alexey.melnikov@isode.com
<span class="grey">Melnikov Standards Track [Page 26]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-27" ></span>
<span class="grey"><a href="./rfc4314">RFC 4314</a> IMAP ACL December 2005</span>
Full Copyright Statement
Copyright (C) The Internet Society (2005).
This document is subject to the rights, licenses and restrictions
contained in <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a>, and except as set forth therein, the authors
retain all their rights.
This document and the information contained herein are provided on an
"AS IS" basis and THE CONTRIBUTOR, THE ORGANIZATION HE/SHE REPRESENTS
OR IS SPONSORED BY (IF ANY), THE INTERNET SOCIETY AND THE INTERNET
ENGINEERING TASK FORCE DISCLAIM ALL WARRANTIES, EXPRESS OR IMPLIED,
INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE
INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED
WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
Intellectual Property
The IETF takes no position regarding the validity or scope of any
Intellectual Property Rights or other rights that might be claimed to
pertain to the implementation or use of the technology described in
this document or the extent to which any license under such rights
might or might not be available; nor does it represent that it has
made any independent effort to identify any such rights. Information
on the procedures with respect to rights in RFC documents can be
found in <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a> and <a href="https://www.rfc-editor.org/bcp/bcp79">BCP 79</a>.
Copies of IPR disclosures made to the IETF Secretariat and any
assurances of licenses to be made available, or the result of an
attempt made to obtain a general license or permission for the use of
such proprietary rights by implementers or users of this
specification can be obtained from the IETF on-line IPR repository at
<a href="http://www.ietf.org/ipr">http://www.ietf.org/ipr</a>.
The IETF invites any interested party to bring to its attention any
copyrights, patents or patent applications, or other proprietary
rights that may cover technology that may be required to implement
this standard. Please address the information to the IETF at ietf-
ipr@ietf.org.
Acknowledgement
Funding for the RFC Editor function is currently provided by the
Internet Society.
Melnikov Standards Track [Page 27]
</pre>
|