├── docs └── debug.md ├── custom_includes ├── intro.html ├── example_box_1.html ├── donate.html ├── example_field_1.html └── paypal.html ├── tests ├── screenshot2.png ├── ad-screenshot1.png └── Userinfo.php ├── skins ├── elastic │ └── account_details.css ├── classic │ ├── images │ │ ├── user.gif │ │ ├── user.png │ │ └── clipboard.png │ ├── templates │ │ ├── account_details.accountdetails.html │ │ ├── moreuserinfo.html │ │ └── frame.html │ ├── ie6.css │ └── account_details.css ├── larry │ ├── images │ │ ├── clipboard.png │ │ └── account_details.png │ ├── ie6.css │ └── templates │ │ ├── moreuserinfo.html │ │ └── frame.html ├── blue_larry │ ├── images │ │ ├── clipboard.png │ │ └── account_details.png │ ├── ie6.css │ └── templates │ │ ├── account_details.html │ │ ├── moreuserinfo.html │ │ └── frame.html ├── grey_larry │ ├── images │ │ ├── clipboard.png │ │ └── account_details.png │ ├── ie6.css │ └── templates │ │ ├── moreuserinfo.html │ │ ├── account_details.html │ │ └── frame.html ├── pink_larry │ ├── images │ │ ├── clipboard.png │ │ └── account_details.png │ ├── ie6.css │ └── templates │ │ ├── moreuserinfo.html │ │ ├── account_details.html │ │ └── frame.html ├── teal_larry │ ├── images │ │ └── clipboard.png │ ├── ie6.css │ └── templates │ │ ├── account_details.html │ │ ├── moreuserinfo.html │ │ └── frame.html ├── autumn_larry │ ├── images │ │ └── clipboard.png │ ├── ie6.css │ └── templates │ │ ├── account_details.html │ │ ├── moreuserinfo.html │ │ └── frame.html ├── black_larry │ ├── images │ │ ├── clipboard.png │ │ └── account_details.png │ ├── ie6.css │ └── templates │ │ ├── moreuserinfo.html │ │ └── frame.html ├── green_larry │ ├── images │ │ └── clipboard.png │ ├── ie6.css │ └── templates │ │ ├── moreuserinfo.html │ │ └── frame.html ├── plata_larry │ ├── images │ │ └── clipboard.png │ ├── ie6.css │ └── templates │ │ ├── moreuserinfo.html │ │ └── frame.html ├── summer_larry │ ├── images │ │ ├── clipboard.png │ │ └── account_details.png │ ├── ie6.css │ └── templates │ │ ├── account_details.html │ │ ├── moreuserinfo.html │ │ └── frame.html └── violet_larry │ ├── images │ └── clipboard.png │ ├── ie6.css │ └── templates │ ├── moreuserinfo.html │ ├── account_details.html │ └── frame.html ├── lib ├── CPU_usage.php ├── Memory.php ├── mail_count.php ├── getip.php ├── OS.php ├── listplugins.php └── get_sub_mbox.php ├── rc_latest.txt ├── .gitattributes ├── account_details.min.js ├── account_details.js ├── composer.json ├── .gitignore ├── localization ├── fy_NL.inc ├── mr_IN.inc ├── sq_AL.inc ├── ti.inc ├── fa_AF.inc ├── fa_IR.inc ├── az_AZ.inc ├── eo.inc ├── lb_LU.inc ├── be_BE.inc ├── br.inc ├── bs_BA.inc ├── hy_AM.inc ├── ia.inc ├── km_KH.inc ├── ku_IQ.inc ├── mn_MN.inc ├── ca_ES.inc ├── fo_FO.inc ├── ml_IN.inc ├── ast.inc ├── cy_GB.inc ├── eu_ES.inc ├── ku.inc ├── sr_CS.inc ├── gl_ES.inc ├── hr_HR.inc ├── zh_CN.inc ├── zh_TW.inc ├── ja_JP.inc ├── ko_KR.inc ├── he_IL.inc ├── en_CA.inc ├── en_GB.inc ├── ar_SA.inc ├── ar.inc ├── id_ID.inc ├── et_EE.inc ├── nn_NO.inc ├── tr_TR.inc ├── nl_BE.inc ├── nl_NL.inc ├── da_DK.inc ├── fi_FI.inc ├── cs_CZ.inc ├── hu_HU.inc ├── sv_SE.inc ├── vi_VN.inc ├── nb_NO.inc ├── pt_BR.inc ├── pt_PT.inc └── sk_SK.inc ├── tools └── dav_diag.php └── README.md /docs/debug.md: -------------------------------------------------------------------------------- 1 | &_davdebug=1 2 | -------------------------------------------------------------------------------- /custom_includes/intro.html: -------------------------------------------------------------------------------- 1 | Got Money? -------------------------------------------------------------------------------- /tests/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/HEAD/tests/screenshot2.png -------------------------------------------------------------------------------- /tests/ad-screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/HEAD/tests/ad-screenshot1.png -------------------------------------------------------------------------------- /skins/elastic/account_details.css: -------------------------------------------------------------------------------- 1 | .listing.iconized li.account_details > a:before { 2 | content: "\f022" 3 | } 4 | -------------------------------------------------------------------------------- /skins/classic/images/user.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/HEAD/skins/classic/images/user.gif -------------------------------------------------------------------------------- /skins/classic/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/HEAD/skins/classic/images/user.png -------------------------------------------------------------------------------- /skins/larry/images/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/HEAD/skins/larry/images/clipboard.png -------------------------------------------------------------------------------- /skins/classic/images/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/HEAD/skins/classic/images/clipboard.png -------------------------------------------------------------------------------- /skins/blue_larry/images/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/HEAD/skins/blue_larry/images/clipboard.png -------------------------------------------------------------------------------- /skins/grey_larry/images/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/HEAD/skins/grey_larry/images/clipboard.png -------------------------------------------------------------------------------- /skins/pink_larry/images/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/HEAD/skins/pink_larry/images/clipboard.png -------------------------------------------------------------------------------- /skins/teal_larry/images/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/HEAD/skins/teal_larry/images/clipboard.png -------------------------------------------------------------------------------- /lib/CPU_usage.php: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /skins/autumn_larry/images/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/HEAD/skins/autumn_larry/images/clipboard.png -------------------------------------------------------------------------------- /skins/black_larry/images/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/HEAD/skins/black_larry/images/clipboard.png -------------------------------------------------------------------------------- /skins/green_larry/images/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/HEAD/skins/green_larry/images/clipboard.png -------------------------------------------------------------------------------- /skins/larry/images/account_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/HEAD/skins/larry/images/account_details.png -------------------------------------------------------------------------------- /skins/plata_larry/images/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/HEAD/skins/plata_larry/images/clipboard.png -------------------------------------------------------------------------------- /skins/summer_larry/images/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/HEAD/skins/summer_larry/images/clipboard.png -------------------------------------------------------------------------------- /skins/violet_larry/images/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/HEAD/skins/violet_larry/images/clipboard.png -------------------------------------------------------------------------------- /skins/black_larry/images/account_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/HEAD/skins/black_larry/images/account_details.png -------------------------------------------------------------------------------- /skins/blue_larry/images/account_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/HEAD/skins/blue_larry/images/account_details.png -------------------------------------------------------------------------------- /skins/grey_larry/images/account_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/HEAD/skins/grey_larry/images/account_details.png -------------------------------------------------------------------------------- /skins/pink_larry/images/account_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/HEAD/skins/pink_larry/images/account_details.png -------------------------------------------------------------------------------- /skins/summer_larry/images/account_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/HEAD/skins/summer_larry/images/account_details.png -------------------------------------------------------------------------------- /rc_latest.txt: -------------------------------------------------------------------------------- 1 |    Setup a Cron Job to check latest version - curl -sL https://api.github.com/repos/roundcube/roundcubemail/releases/latest | jq -r ".tag_name" | sort -n | tail -1 > /path_to_roundcube/plugins/account_details/rc_latest.txt 2 | -------------------------------------------------------------------------------- /skins/classic/templates/account_details.accountdetails.html: -------------------------------------------------------------------------------- 1 |
2 |

3 |
4 | 5 |
6 |
7 | -------------------------------------------------------------------------------- /custom_includes/example_box_1.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skins/classic/ie6.css: -------------------------------------------------------------------------------- 1 | #showusername a 2 | { 3 | background: url('images/user.gif') 5px 1px no-repeat; 4 | } 5 | 6 | 7 | /* Fix boxtitle header span */ 8 | div.settingsbox-account_details .boxtitle { 9 | width: 100% !important; 10 | box-sizing: border-box; 11 | margin-right: 0 !important; 12 | padding-right: 15px; 13 | } 14 | -------------------------------------------------------------------------------- /skins/larry/ie6.css: -------------------------------------------------------------------------------- 1 | #showusername a 2 | { 3 | background: url('images/user.gif') 5px 1px no-repeat; 4 | } 5 | 6 | 7 | /* Fix boxtitle header span */ 8 | div.settingsbox-account_details .boxtitle { 9 | width: 100% !important; 10 | box-sizing: border-box; 11 | margin-right: 0 !important; 12 | padding-right: 15px; 13 | } 14 | -------------------------------------------------------------------------------- /skins/autumn_larry/ie6.css: -------------------------------------------------------------------------------- 1 | #showusername a 2 | { 3 | background: url('images/user.gif') 5px 1px no-repeat; 4 | } 5 | 6 | 7 | /* Fix boxtitle header span */ 8 | div.settingsbox-account_details .boxtitle { 9 | width: 100% !important; 10 | box-sizing: border-box; 11 | margin-right: 0 !important; 12 | padding-right: 15px; 13 | } 14 | -------------------------------------------------------------------------------- /skins/black_larry/ie6.css: -------------------------------------------------------------------------------- 1 | #showusername a 2 | { 3 | background: url('images/user.gif') 5px 1px no-repeat; 4 | } 5 | 6 | 7 | /* Fix boxtitle header span */ 8 | div.settingsbox-account_details .boxtitle { 9 | width: 100% !important; 10 | box-sizing: border-box; 11 | margin-right: 0 !important; 12 | padding-right: 15px; 13 | } 14 | -------------------------------------------------------------------------------- /skins/blue_larry/ie6.css: -------------------------------------------------------------------------------- 1 | #showusername a 2 | { 3 | background: url('images/user.gif') 5px 1px no-repeat; 4 | } 5 | 6 | 7 | /* Fix boxtitle header span */ 8 | div.settingsbox-account_details .boxtitle { 9 | width: 100% !important; 10 | box-sizing: border-box; 11 | margin-right: 0 !important; 12 | padding-right: 15px; 13 | } 14 | -------------------------------------------------------------------------------- /skins/green_larry/ie6.css: -------------------------------------------------------------------------------- 1 | #showusername a 2 | { 3 | background: url('images/user.gif') 5px 1px no-repeat; 4 | } 5 | 6 | 7 | /* Fix boxtitle header span */ 8 | div.settingsbox-account_details .boxtitle { 9 | width: 100% !important; 10 | box-sizing: border-box; 11 | margin-right: 0 !important; 12 | padding-right: 15px; 13 | } 14 | -------------------------------------------------------------------------------- /skins/grey_larry/ie6.css: -------------------------------------------------------------------------------- 1 | #showusername a 2 | { 3 | background: url('images/user.gif') 5px 1px no-repeat; 4 | } 5 | 6 | 7 | /* Fix boxtitle header span */ 8 | div.settingsbox-account_details .boxtitle { 9 | width: 100% !important; 10 | box-sizing: border-box; 11 | margin-right: 0 !important; 12 | padding-right: 15px; 13 | } 14 | -------------------------------------------------------------------------------- /skins/pink_larry/ie6.css: -------------------------------------------------------------------------------- 1 | #showusername a 2 | { 3 | background: url('images/user.gif') 5px 1px no-repeat; 4 | } 5 | 6 | 7 | /* Fix boxtitle header span */ 8 | div.settingsbox-account_details .boxtitle { 9 | width: 100% !important; 10 | box-sizing: border-box; 11 | margin-right: 0 !important; 12 | padding-right: 15px; 13 | } 14 | -------------------------------------------------------------------------------- /skins/plata_larry/ie6.css: -------------------------------------------------------------------------------- 1 | #showusername a 2 | { 3 | background: url('images/user.gif') 5px 1px no-repeat; 4 | } 5 | 6 | 7 | /* Fix boxtitle header span */ 8 | div.settingsbox-account_details .boxtitle { 9 | width: 100% !important; 10 | box-sizing: border-box; 11 | margin-right: 0 !important; 12 | padding-right: 15px; 13 | } 14 | -------------------------------------------------------------------------------- /skins/summer_larry/ie6.css: -------------------------------------------------------------------------------- 1 | #showusername a 2 | { 3 | background: url('images/user.gif') 5px 1px no-repeat; 4 | } 5 | 6 | 7 | /* Fix boxtitle header span */ 8 | div.settingsbox-account_details .boxtitle { 9 | width: 100% !important; 10 | box-sizing: border-box; 11 | margin-right: 0 !important; 12 | padding-right: 15px; 13 | } 14 | -------------------------------------------------------------------------------- /skins/teal_larry/ie6.css: -------------------------------------------------------------------------------- 1 | #showusername a 2 | { 3 | background: url('images/user.gif') 5px 1px no-repeat; 4 | } 5 | 6 | 7 | /* Fix boxtitle header span */ 8 | div.settingsbox-account_details .boxtitle { 9 | width: 100% !important; 10 | box-sizing: border-box; 11 | margin-right: 0 !important; 12 | padding-right: 15px; 13 | } 14 | -------------------------------------------------------------------------------- /skins/violet_larry/ie6.css: -------------------------------------------------------------------------------- 1 | #showusername a 2 | { 3 | background: url('images/user.gif') 5px 1px no-repeat; 4 | } 5 | 6 | 7 | /* Fix boxtitle header span */ 8 | div.settingsbox-account_details .boxtitle { 9 | width: 100% !important; 10 | box-sizing: border-box; 11 | margin-right: 0 !important; 12 | padding-right: 15px; 13 | } 14 | -------------------------------------------------------------------------------- /lib/Memory.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skins/classic/account_details.css: -------------------------------------------------------------------------------- 1 | #showusername 2 | { 3 | position: absolute; 4 | top: 65px; 5 | left: 20px; 6 | } 7 | 8 | #showusername a 9 | { 10 | font-size: 11px; 11 | color: #666666; 12 | padding-top: 2px; 13 | padding-bottom: 2px; 14 | padding-left: 25px; 15 | text-decoration: none; 16 | background: url('images/user.png') 5px 1px no-repeat; 17 | } 18 | 19 | #showusername a:hover 20 | { 21 | color: #333333; 22 | } 23 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /account_details.min.js: -------------------------------------------------------------------------------- 1 | window.rcmail&&rcmail.addEventListener("init",function(){var a=$("").attr("id","settingstabpluginaccount_details").addClass("tablink");$("").attr("href",rcmail.env.comm_path+"&_action=plugin.account_details").text(rcmail.get_label("account_details","account_details")).click(function(a){return rcmail.command("plugin.account_details","",this,a)}).appendTo(a),rcmail.add_element(a,"tabs"),rcmail.register_command("plugin.account_details",function(){rcmail.goto_url("plugin.account_details")},!0)}); 2 | -------------------------------------------------------------------------------- /custom_includes/donate.html: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |
9 |

If you like my work, please consider a donation. No donation necessary to get rid of this, bottom of config.inc.php and change "enable_custombox" to false. Thank you and have a great day. ☠

10 | 11 |
PayPal - The safer, easier way to pay online! 12 | 13 | -------------------------------------------------------------------------------- /tests/Userinfo.php: -------------------------------------------------------------------------------- 1 | api); 18 | 19 | $this->assertInstanceOf('account_details', $plugin); 20 | $this->assertInstanceOf('rcube_plugin', $plugin); 21 | } 22 | } 23 | 24 | -------------------------------------------------------------------------------- /lib/mail_count.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom_includes/example_field_1.html: -------------------------------------------------------------------------------- 1 | 16 | 17 |

18 | 19 | This line is included from a HTML file! 20 | 21 |

-------------------------------------------------------------------------------- /lib/getip.php: -------------------------------------------------------------------------------- 1 | 31 | -------------------------------------------------------------------------------- /account_details.js: -------------------------------------------------------------------------------- 1 | /* Show user-info plugin script */ 2 | 3 | if (window.rcmail) { 4 | rcmail.addEventListener('init', function() { 5 | // 6 | var tab = $('').attr('id', 'settingstabpluginaccount_details').addClass('tablink'); 7 | 8 | $('').attr('href', rcmail.env.comm_path + '&_action=plugin.account_details') 9 | .text(rcmail.get_label('account_details', 'account_details')) 10 | .click(function(e) { return rcmail.command('plugin.account_details', '', this, e); }) 11 | .appendTo(tab); 12 | 13 | // add button and register command 14 | rcmail.add_element(tab, 'tabs'); 15 | rcmail.register_command('plugin.account_details', function() { rcmail.goto_url('plugin.account_details') }, true); 16 | }) 17 | } 18 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "texxasrulez/account_details", 3 | "type": "roundcube-plugin", 4 | "description": "Display additional information for the current user and much more.", 5 | "homepage": "https://github.com/texxasrulez/account_details", 6 | "support": { 7 | "issues": "https://github.com/texxasrulez/account_details/issues", 8 | "source": "https://github.com/texxasrulez/account_details" 9 | }, 10 | "license": "GPL-3.0", 11 | "authors": [ 12 | { 13 | "name": "Gene Hawkins", 14 | "email": "texxasrulez@yahoo.com", 15 | "role": "Lead" 16 | } 17 | ], 18 | "repositories": [ 19 | { 20 | "type": "composer", 21 | "url": "https://plugins.roundcube.net" 22 | } 23 | ], 24 | "require": { 25 | "php": ">=7.1.0", 26 | "roundcube/plugin-installer": ">=0.1.4" 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /skins/larry/templates/moreuserinfo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 14 | 15 | 16 |

 » 

17 |
18 |
19 | 20 | 21 |
22 |
23 | 24 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Windows image file caches 2 | Thumbs.db 3 | ehthumbs.db 4 | 5 | # Folder config file 6 | Desktop.ini 7 | 8 | # Recycle Bin used on file shares 9 | $RECYCLE.BIN/ 10 | 11 | # Windows Installer files 12 | *.cab 13 | *.msi 14 | *.msm 15 | *.msp 16 | 17 | # Windows shortcuts 18 | *.lnk 19 | 20 | # ========================= 21 | # Operating System Files 22 | # ========================= 23 | 24 | # OSX 25 | # ========================= 26 | 27 | .DS_Store 28 | .AppleDouble 29 | .LSOverride 30 | 31 | # Thumbnails 32 | ._* 33 | 34 | # Files that might appear in the root of a volume 35 | .DocumentRevisions-V100 36 | .fseventsd 37 | .Spotlight-V100 38 | .TemporaryItems 39 | .Trashes 40 | .VolumeIcon.icns 41 | 42 | # Directories potentially created on remote AFP share 43 | .AppleDB 44 | .AppleDesktop 45 | Network Trash Folder 46 | Temporary Items 47 | .apdisk 48 | 49 | # Files that I don't want sneaking past me 50 | *.swp 51 | *.sgh 52 | *.zip 53 | translate_locales.php 54 | config.inc.php 55 | -------------------------------------------------------------------------------- /skins/black_larry/templates/moreuserinfo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 14 | 15 | 16 |

 » 

17 |
18 |
19 | 20 | 21 |
22 |
23 | 24 | -------------------------------------------------------------------------------- /skins/grey_larry/templates/moreuserinfo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 14 | 15 | 16 |

 » 

17 |
18 |
19 | 20 | 21 |
22 |
23 | 24 | -------------------------------------------------------------------------------- /skins/pink_larry/templates/moreuserinfo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 14 | 15 | 16 |

 » 

17 |
18 |
19 | 20 | 21 |
22 |
23 | 24 | -------------------------------------------------------------------------------- /skins/plata_larry/templates/moreuserinfo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 14 | 15 | 16 |

 » 

17 |
18 |
19 | 20 | 21 |
22 |
23 | 24 | -------------------------------------------------------------------------------- /skins/violet_larry/templates/moreuserinfo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 14 | 15 | 16 |

 » 

17 |
18 |
19 | 20 | 21 |
22 |
23 | 24 | -------------------------------------------------------------------------------- /skins/autumn_larry/templates/account_details.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 14 | 15 | 16 |

 » 

17 |
18 |
19 | 20 | 21 |
22 |
23 | 24 | 25 | -------------------------------------------------------------------------------- /skins/blue_larry/templates/account_details.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 14 | 15 | 16 |

 » 

17 |
18 |
19 | 20 | 21 |
22 |
23 | 24 | 25 | -------------------------------------------------------------------------------- /skins/grey_larry/templates/account_details.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 14 | 15 | 16 |

 » 

17 |
18 |
19 | 20 | 21 |
22 |
23 | 24 | 25 | -------------------------------------------------------------------------------- /skins/pink_larry/templates/account_details.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 14 | 15 | 16 |

 » 

17 |
18 |
19 | 20 | 21 |
22 |
23 | 24 | 25 | -------------------------------------------------------------------------------- /skins/summer_larry/templates/account_details.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 14 | 15 | 16 |

 » 

17 |
18 |
19 | 20 | 21 |
22 |
23 | 24 | 25 | -------------------------------------------------------------------------------- /skins/teal_larry/templates/account_details.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 14 | 15 | 16 |

 » 

17 |
18 |
19 | 20 | 21 |
22 |
23 | 24 | 25 | -------------------------------------------------------------------------------- /skins/violet_larry/templates/account_details.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 14 | 15 | 16 |

 » 

17 |
18 |
19 | 20 | 21 |
22 |
23 | 24 | 25 | -------------------------------------------------------------------------------- /localization/fy_NL.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Brûkersynformaasje'; 19 | ?> -------------------------------------------------------------------------------- /skins/classic/templates/moreuserinfo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 12 | 13 | 14 | 15 |
 » 
16 |
17 |
18 | 19 | 20 |
21 |
22 | 23 | -------------------------------------------------------------------------------- /skins/autumn_larry/templates/moreuserinfo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 12 | 13 | 14 | 15 |
 » 
16 |
17 |
18 | 19 | 20 |
21 |
22 | 23 | -------------------------------------------------------------------------------- /skins/blue_larry/templates/moreuserinfo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 12 | 13 | 14 | 15 |
 » 
16 |
17 |
18 | 19 | 20 |
21 |
22 | 23 | -------------------------------------------------------------------------------- /skins/green_larry/templates/moreuserinfo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 12 | 13 | 14 | 15 |
 » 
16 |
17 |
18 | 19 | 20 |
21 |
22 | 23 | -------------------------------------------------------------------------------- /skins/summer_larry/templates/moreuserinfo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 12 | 13 | 14 | 15 |
 » 
16 |
17 |
18 | 19 | 20 |
21 |
22 | 23 | -------------------------------------------------------------------------------- /skins/teal_larry/templates/moreuserinfo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 12 | 13 | 14 | 15 |
 » 
16 |
17 |
18 | 19 | 20 |
21 |
22 | 23 | -------------------------------------------------------------------------------- /tools/dav_diag.php: -------------------------------------------------------------------------------- 1 | user || !$rcmail->user->ID) { 19 | header('Content-Type: application/json'); 20 | echo json_encode(['error' => 'No active Roundcube session']); 21 | exit; 22 | } 23 | 24 | $plugin = new account_details($rcmail); 25 | $plugin->init(); // loads config and sets template overrides 26 | $resources = $plugin->get_dav_resources(); 27 | 28 | header('Content-Type: application/json'); 29 | echo json_encode($resources, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES); 30 | -------------------------------------------------------------------------------- /skins/larry/templates/frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 |
23 | 24 |
25 | 26 |
27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /skins/black_larry/templates/frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 |
23 | 24 |
25 | 26 |
27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /skins/grey_larry/templates/frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 |
23 | 24 |
25 | 26 |
27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /skins/plata_larry/templates/frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 |
23 | 24 |
25 | 26 |
27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /localization/mr_IN.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'वापरकर्त्याची माहिती'; 19 | $labels['created'] = 'निर्माण केलेले'; 20 | ?> -------------------------------------------------------------------------------- /skins/autumn_larry/templates/frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 |
23 | 24 |
25 | 26 |
27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /skins/blue_larry/templates/frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 |
23 | 24 |
25 | 26 |
27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /skins/pink_larry/templates/frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 |
23 | 24 |
25 | 26 |
27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /skins/summer_larry/templates/frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 |
23 | 24 |
25 | 26 |
27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /skins/teal_larry/templates/frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 |
23 | 24 |
25 | 26 |
27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /skins/violet_larry/templates/frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 |
23 | 24 |
25 | 26 |
27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /localization/sq_AL.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Informacionet e përdoruesit'; 19 | $labels['created'] = 'Krijuar'; 20 | $labels['lastlogin'] = 'Hyrja e fundit'; 21 | ?> -------------------------------------------------------------------------------- /localization/ti.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'ሓብሬታ በዓል ዋና '; 19 | $labels['created'] = 'እዋን ፍጥረት'; 20 | $labels['lastlogin'] = 'እዋን እታው'; 21 | $labels['defaultidentity'] = 'ዘይተለወጠ መለለይ መንነት'; 22 | ?> -------------------------------------------------------------------------------- /localization/fa_AF.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'اطلاعات کاربر'; 19 | $labels['created'] = 'ایجاد شد'; 20 | $labels['lastlogin'] = 'آخرین ورود'; 21 | $labels['defaultidentity'] = 'هویت پیش فرض'; 22 | ?> -------------------------------------------------------------------------------- /localization/fa_IR.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'اطلاعات کاربر'; 19 | $labels['created'] = 'ایجاد شده'; 20 | $labels['lastlogin'] = 'آخرین ورود'; 21 | $labels['defaultidentity'] = 'شناسه پیش‌فرض'; 22 | ?> -------------------------------------------------------------------------------- /localization/az_AZ.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Məlumat'; 19 | $labels['created'] = 'Yaradılma tarixi'; 20 | $labels['lastlogin'] = 'Sonuncu giriş'; 21 | $labels['defaultidentity'] = 'Default profil'; 22 | ?> -------------------------------------------------------------------------------- /localization/eo.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Informoj pri uzanto'; 19 | $labels['created'] = 'Kreita'; 20 | $labels['lastlogin'] = 'Lasta ensaluto'; 21 | $labels['defaultidentity'] = 'Apriora idento'; 22 | ?> -------------------------------------------------------------------------------- /localization/lb_LU.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Benotzer-Info'; 19 | $labels['created'] = 'Erstallt'; 20 | $labels['lastlogin'] = 'Leschte Login'; 21 | $labels['defaultidentity'] = 'Standard-Identitéit'; 22 | ?> -------------------------------------------------------------------------------- /localization/be_BE.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Асабістыя звесткі'; 19 | $labels['created'] = 'Створаны'; 20 | $labels['lastlogin'] = 'Апошні ўваход'; 21 | $labels['defaultidentity'] = 'Стандартная тоеснасць'; 22 | ?> -------------------------------------------------------------------------------- /localization/br.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Titouroù an arveriad'; 19 | $labels['created'] = 'Krouet'; 20 | $labels['lastlogin'] = 'Kennask diwezhañ'; 21 | $labels['defaultidentity'] = 'Identelezh dre ziouer'; 22 | ?> -------------------------------------------------------------------------------- /localization/bs_BA.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Korisničke informacije'; 19 | $labels['created'] = 'Kreirano'; 20 | $labels['lastlogin'] = 'Zadnja prijava'; 21 | $labels['defaultidentity'] = 'Glavni identitet'; 22 | ?> -------------------------------------------------------------------------------- /localization/hy_AM.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Օգտվողի տվյալներ'; 19 | $labels['created'] = 'Ստեղծված'; 20 | $labels['lastlogin'] = 'Վերջին մուտքը`'; 21 | $labels['defaultidentity'] = 'Լռելյալ ինքնությունն'; 22 | ?> -------------------------------------------------------------------------------- /localization/ia.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Information de usator'; 19 | $labels['created'] = 'Create'; 20 | $labels['lastlogin'] = 'Ultime session'; 21 | $labels['defaultidentity'] = 'Identitate predefinite'; 22 | ?> -------------------------------------------------------------------------------- /localization/km_KH.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'ព័ត៌មាន​អ្នក​ប្រើ'; 19 | $labels['created'] = 'បាន​បង្កើត'; 20 | $labels['lastlogin'] = 'ចូល​ចុងក្រោយ'; 21 | $labels['defaultidentity'] = 'អត្តសញ្ញាណ​លំនាំដើម'; 22 | ?> -------------------------------------------------------------------------------- /localization/ku_IQ.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'زانیاری بەکارهێنەر'; 19 | $labels['created'] = 'دروستکرا'; 20 | $labels['lastlogin'] = 'دوایین چوونەژوورەوە'; 21 | $labels['defaultidentity'] = 'ناسنامەی بنەڕەتی'; 22 | ?> -------------------------------------------------------------------------------- /localization/mn_MN.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Хэрэглэгчийн мэдээлэл'; 19 | $labels['created'] = 'Үүссэн'; 20 | $labels['lastlogin'] = 'Сүүлчийн нэвтрэлт'; 21 | $labels['defaultidentity'] = 'Үндсэн мэдээлэл'; 22 | ?> -------------------------------------------------------------------------------- /localization/ca_ES.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Informació de l\'usuari'; 19 | $labels['created'] = 'Creat'; 20 | $labels['lastlogin'] = 'Última connexió'; 21 | $labels['defaultidentity'] = 'Identitat per defecte'; 22 | ?> -------------------------------------------------------------------------------- /localization/fo_FO.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Brúkara upplýsing'; 19 | $labels['created'] = 'Stovnaður'; 20 | $labels['lastlogin'] = 'Seinast innritaður'; 21 | $labels['defaultidentity'] = 'Sjálvsett samleiki'; 22 | ?> -------------------------------------------------------------------------------- /localization/ml_IN.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'ഉപയോക്താവിന്റെ വിവരം'; 19 | $labels['created'] = 'നിര്‍മ്മിച്ചു'; 20 | $labels['lastlogin'] = 'അവസാന പ്രവേശനം'; 21 | $labels['defaultidentity'] = 'സാധാരണ വ്യക്തിത്വം'; 22 | ?> -------------------------------------------------------------------------------- /localization/ast.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Información d\'usuariu'; 19 | $labels['created'] = 'Creáu'; 20 | $labels['lastlogin'] = 'Aniciu de sesión caberu'; 21 | $labels['defaultidentity'] = 'Identidá por defeutu'; 22 | ?> -------------------------------------------------------------------------------- /localization/cy_GB.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Gwybodaeth defnyddiwr'; 19 | $labels['created'] = 'Crëwyd'; 20 | $labels['lastlogin'] = 'Mewngofnodiad diwethaf'; 21 | $labels['defaultidentity'] = 'Personoliaeth arferol'; 22 | ?> -------------------------------------------------------------------------------- /localization/eu_ES.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Erabiltzailearen informazioa'; 19 | $labels['created'] = 'Sortua'; 20 | $labels['lastlogin'] = 'Azken saioa'; 21 | $labels['defaultidentity'] = 'Lehenetsitako identitatea'; 22 | ?> -------------------------------------------------------------------------------- /localization/ku.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'nawnişani bakar henar'; 19 | $labels['created'] = 'Hat afirandin'; 20 | $labels['lastlogin'] = 'axrin hatna jurawa'; 21 | $labels['defaultidentity'] = 'Nasnameya Pêşsalixbûyî'; 22 | ?> -------------------------------------------------------------------------------- /localization/sr_CS.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Подаци о кориснику'; 19 | $labels['created'] = 'Направљено'; 20 | $labels['lastlogin'] = 'Последња пријава'; 21 | $labels['defaultidentity'] = 'подразумевани идентитет'; 22 | ?> -------------------------------------------------------------------------------- /localization/gl_ES.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Información de persoa usuaria'; 19 | $labels['created'] = 'Creado'; 20 | $labels['lastlogin'] = 'Última conexión'; 21 | $labels['defaultidentity'] = 'Identidade predeterminada'; 22 | ?> -------------------------------------------------------------------------------- /localization/hr_HR.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Informacije o korisniku'; 19 | $labels['created'] = 'Stvoreno'; 20 | $labels['lastlogin'] = 'Zadnja prijava (login)'; 21 | $labels['defaultidentity'] = 'Preddefinirani identitet'; 22 | ?> -------------------------------------------------------------------------------- /skins/classic/templates/frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 8 | 9 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 |
25 | 26 |
27 | 28 |
29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /skins/green_larry/templates/frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 8 | 9 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 |
25 | 26 |
27 | 28 |
29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /lib/OS.php: -------------------------------------------------------------------------------- 1 | "; 3 | 4 | function os_info($uagent) 5 | { 6 | // the order of this array is important 7 | global $uagent; 8 | $oses = array( 9 | 'Win311' => 'Win16', 10 | 'Win95' => '(Windows 95)|(Win95)|(Windows_95)', 11 | 'WinME' => '(Windows 98)|(Win 9x 4.90)|(Windows ME)', 12 | 'Win98' => '(Windows 98)|(Win98)', 13 | 'Win2000' => '(Windows NT 5.0)|(Windows 2000)', 14 | 'WinXP' => '(Windows NT 5.1)|(Windows XP)', 15 | 'WinServer2003' => '(Windows NT 5.2)', 16 | 'WinVista' => '(Windows NT 6.0)', 17 | 'Windows 7' => '(Windows NT 6.1)', 18 | 'Windows 8' => '(Windows NT 6.2)', 19 | 'Windows 10' => '(Windows NT 10.0)', 20 | 'WinNT' => '(Windows NT 4.0)|(WinNT4.0)|(WinNT)|(Windows NT)', 21 | 'OpenBSD' => 'OpenBSD', 22 | 'SunOS' => 'SunOS', 23 | 'Ubuntu' => 'Ubuntu', 24 | 'Android' => 'Android', 25 | 'Debian' => 'Debian', 26 | 'Linux' => '(Linux)|(X11)', 27 | 'iPhone' => 'iPhone', 28 | 'iPad' => 'iPad', 29 | 'MacOS' => '(Mac_PowerPC)|(Macintosh)', 30 | 'QNX' => 'QNX', 31 | 'BeOS' => 'BeOS', 32 | 'OS2' => 'OS/2', 33 | 'SearchBot' => '(nuhk)|(Googlebot)|(Yammybot)|(Openbot)|(Slurp)|(MSNBot)|(Ask Jeeves/Teoma)|(ia_archiver)' 34 | ); 35 | $uagent = strtolower($uagent ? $uagent : $_SERVER['HTTP_USER_AGENT']); 36 | foreach ($oses as $os => $pattern) 37 | if (preg_match('/' . $pattern . '/i', $uagent)) 38 | return $os; 39 | return 'Unknown'; 40 | } 41 | ?> -------------------------------------------------------------------------------- /custom_includes/paypal.html: -------------------------------------------------------------------------------- 1 |   2 |
3 | 4 | 6 | 7 | 8 |
9 | 10 | -------------------------------------------------------------------------------- /lib/listplugins.php: -------------------------------------------------------------------------------- 1 | plugins->active_plugins) ? $rcmail->plugins->active_plugins : []; 15 | $plugins = array_filter(is_array($plugins_raw) ? $plugins_raw : []); 16 | 17 | $plugin_info = []; 18 | 19 | foreach ($plugins as $name) { 20 | $info = $rcmail->plugins->get_info($name); 21 | if (is_array($info) && !empty($info)) { 22 | $plugin_info[$name] = $info; 23 | } 24 | } 25 | 26 | // Include info for required plugins as well 27 | foreach ($plugin_info as $name => $info) { 28 | if (!empty($info['require']) && is_array($info['require'])) { 29 | foreach ($info['require'] as $req_name) { 30 | if (!isset($plugin_info[$req_name])) { 31 | $req_info = $rcmail->plugins->get_info($req_name); 32 | if (is_array($req_info) && !empty($req_info)) { 33 | $plugin_info[$req_name] = $req_info; 34 | } 35 | } 36 | } 37 | } 38 | } 39 | 40 | if (empty($plugin_info)) { 41 | return ''; 42 | } 43 | 44 | ksort($plugin_info, SORT_LOCALE_STRING); 45 | 46 | $table = new html_table($attrib); 47 | 48 | // Header 49 | $table->add_header('name', $rcmail->gettext('plugin')); 50 | $table->add_header('version', $rcmail->gettext('version')); 51 | $table->add_header('license', $rcmail->gettext('license')); 52 | $table->add_header('source', $rcmail->gettext('source')); 53 | 54 | foreach ($plugin_info as $name => $data) { 55 | // Build Source link 56 | $uri = ''; 57 | if (!empty($data['src_uri'])) { 58 | $uri = $data['src_uri']; 59 | } elseif (!empty($data['uri'])) { 60 | $uri = $data['uri']; 61 | } 62 | 63 | if ($uri && stripos($uri, 'http') !== 0) { 64 | $uri = 'http://' . $uri; 65 | } 66 | 67 | $uri_cell = $uri 68 | ? html::a(['target' => '_blank', 'href' => rcube::Q($uri)], rcube::Q($rcmail->gettext('download'))) 69 | : ''; 70 | 71 | // Build License cell 72 | $license_text = isset($data['license']) ? $data['license'] : ''; 73 | if (!empty($data['license_uri'])) { 74 | $license_cell = html::a(['target' => '_blank', 'href' => rcube::Q($data['license_uri'])], rcube::Q($license_text)); 75 | } else { 76 | $license_cell = rcube::Q($license_text); 77 | } 78 | 79 | $table->add_row(); 80 | $table->add('name', rcube::Q(!empty($data['name']) ? $data['name'] : $name)); 81 | $table->add('version', !empty($data['version']) ? rcube::Q($data['version']) : ''); 82 | $table->add('license', $license_cell); 83 | $table->add('source', $uri_cell); 84 | } 85 | 86 | return $table->show(); 87 | } 88 | ?> 89 | -------------------------------------------------------------------------------- /localization/zh_CN.inc: -------------------------------------------------------------------------------- 1 | 98 | -------------------------------------------------------------------------------- /localization/zh_TW.inc: -------------------------------------------------------------------------------- 1 | 98 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Account Details for Roundcube Plugin 2 | 3 | ![Downloads](https://img.shields.io/github/downloads/texxasrulez/account_details/total?style=plastic&logo=github&logoColor=white&label=Downloads&labelColor=aqua&color=blue) 4 | [![Packagist Downloads](https://img.shields.io/packagist/dt/texxasrulez/account_details?style=plastic&logo=packagist&logoColor=white&label=Downloads&labelColor=blue&color=gold)](https://packagist.org/packages/texxasrulez/account_details) 5 | [![Packagist Version](https://img.shields.io/packagist/v/texxasrulez/account_details?style=plastic&logo=packagist&logoColor=white&label=Version&labelColor=blue&color=limegreen)](https://packagist.org/packages/texxasrulez/account_details) 6 | [![Github License](https://img.shields.io/github/license/texxasrulez/account_details?style=plastic&logo=github&label=License&labelColor=blue&color=coral)](https://github.com/texxasrulez/account_details/LICENSE) 7 | [![GitHub Stars](https://img.shields.io/github/stars/texxasrulez/account_details?style=plastic&logo=github&label=Stars&labelColor=blue&color=deepskyblue)](https://github.com/texxasrulez/account_details/stargazers) 8 | [![GitHub Issues](https://img.shields.io/github/issues/texxasrulez/account_details?style=plastic&logo=github&label=Issues&labelColor=blue&color=aqua)](https://github.com/texxasrulez/account_details/issues) 9 | [![GitHub Contributors](https://img.shields.io/github/contributors/texxasrulez/account_details?style=plastic&logo=github&logoColor=white&label=Contributors&labelColor=blue&color=orchid)](https://github.com/texxasrulez/account_details/graphs/contributors) 10 | [![GitHub Forks](https://img.shields.io/github/forks/texxasrulez/account_details?style=plastic&logo=github&logoColor=white&label=Forks&labelColor=blue&color=darkorange)](https://github.com/texxasrulez/account_details/forks) 11 | [![Donate Paypal](https://img.shields.io/badge/Paypal-Money_Please!-blue.svg?style=plastic&labelColor=blue&color=forestgreen&logo=paypal)](https://www.paypal.me/texxasrulez) 12 | 13 | Adds tab in Setting for more user info. 14 | * Identities 15 | * email address 16 | * storage space quota 17 | * Operating System 18 | * Web Browser 19 | * Video Resolution 20 | * Mailbox Stats 21 | * Server URL, port and other useful info 22 | * CalDAV URL;s 23 | * CardDAV URL's 24 | * and more 25 | 26 | You can enable/disable certain things via the config.inc.php 27 | 28 | **Installation** 29 | ``` 30 | php composer.phar require texxasrulez/account_details 31 | ``` 32 | Upload contents to '/roundcube_location/plugins/account_details/'. 33 | 34 | Enable plugin via config.inc.php with 35 | 36 | $config['plugins'] = array('account_details'); 37 | 38 | Make an hourly cronjob with your web credentials as follows for Roundcube Version Checking: 39 | 40 | ``` 41 | curl -sL https://api.github.com/repos/roundcube/roundcubemail/releases/latest | jq -r ".tag_name" | sort -n | tail -1 > /path_to_roundcube/plugins/account_details/rc_latest.txt` 42 | ``` 43 | 44 | Enjoy! 45 | 46 | :moneybag: **Donations** :moneybag: 47 | 48 | If you use this plugin and would like to show your appreciation by buying me a cup of coffee, I surely would appreciate it. A regular cup of Joe is sufficient, but a Starbucks Coffee would be better ... \ 49 | Zelle (Zelle is integrated within many major banks Mobile Apps by default) - Just send to texxasrulez at yahoo dot com \ 50 | No Zelle in your banks mobile app, no problem, just click [Paypal](https://paypal.me/texxasrulez?locale.x=en_US) and I can make a Starbucks run ... 51 | 52 | I appreciate the interest in this plugin and hope all the best ... 53 | 54 | **Screenshot** 55 | ----------- 56 | With All Details enabled 57 | 58 | ![Alt text](/tests/ad-screenshot1.png?raw=true "Account Details Screenshot") 59 | ![Alt text](/tests/screenshot2.png?raw=true "Account Details Screenshot") 60 | -------------------------------------------------------------------------------- /lib/get_sub_mbox.php: -------------------------------------------------------------------------------- 1 | get_storage(); 13 | 14 | if (!is_object($storage) || !method_exists($storage, 'is_connected') || !$storage->is_connected()) { 15 | // No active IMAP session in this task/context 16 | return []; 17 | } 18 | 19 | $folders = []; 20 | try { 21 | // List all folders under $root. Avoid status calls that might be expensive. 22 | $list = $storage->list_folders($root, '*'); 23 | if (is_array($list)) { 24 | foreach ($list as $mbox) { 25 | if ($mbox === $root) { 26 | continue; 27 | } 28 | 29 | $size_bytes = null; 30 | // Some drivers provide folder_size(); guard existence and errors. 31 | if (method_exists($storage, 'folder_size')) { 32 | try { 33 | $sz = $storage->folder_size($mbox); 34 | if (is_array($sz)) { 35 | // Some backends return arrays like ['size' => ] 36 | $size_bytes = isset($sz['size']) ? (int)$sz['size'] : null; 37 | } elseif (is_numeric($sz)) { 38 | $size_bytes = (int)$sz; 39 | } 40 | } catch (Throwable $e) { 41 | // Silently ignore size errors; keep listing folders. 42 | } 43 | } 44 | 45 | $folders[] = [ 46 | 'name' => $mbox, 47 | 'size_kb' => isset($size_bytes) ? (int)round($size_bytes / 1024) : null, 48 | 'size_b' => isset($size_bytes) ? (int)$size_bytes : null, 49 | ]; 50 | } 51 | } 52 | } catch (Throwable $e) { 53 | // On any error, return what we have (likely empty) 54 | return []; 55 | } 56 | 57 | return $folders; 58 | } 59 | } 60 | 61 | /** 62 | * Optional renderer for legacy code paths that expect to append rows to a Roundcube html_table. 63 | * $table should be an instance compatible with $table->add('title', ...); $table->add('value', ...); 64 | */ 65 | if (!function_exists('account_details_render_sub_mboxes')) { 66 | function account_details_render_sub_mboxes($table, $label_folder = null, $label_kb = null, $root = '') { 67 | $rc = rcmail::get_instance(); 68 | if ($label_folder === null) { 69 | $label_folder = $rc->gettext('folder'); 70 | } 71 | if ($label_kb === null) { 72 | // fall back to literal if not present in translations 73 | $label_kb = $rc->gettext('KB') ?: 'KB'; 74 | } 75 | 76 | $rows = account_details_get_sub_mboxes($root); 77 | foreach ($rows as $row) { 78 | $fname = rcube_utils::rep_specialchars_output($row['name']); 79 | $table->add('title', ' ● ' . rcube_utils::rep_specialchars_output($label_folder . ':')); 80 | if (isset($row['size_kb'])) { 81 | $table->add('value', $fname . '  ' . (int)$row['size_kb'] . ' ' . rcube_utils::rep_specialchars_output($label_kb)); 82 | } else { 83 | $table->add('value', $fname); 84 | } 85 | } 86 | } 87 | } 88 | ?> 89 | -------------------------------------------------------------------------------- /localization/ja_JP.inc: -------------------------------------------------------------------------------- 1 | 98 | -------------------------------------------------------------------------------- /localization/ko_KR.inc: -------------------------------------------------------------------------------- 1 | ;'; 77 | $labels['uptime'] = '가동 시간'; 78 | $labels['usystem'] = '사용자 시스템 세부 정보'; 79 | $labels['url'] = 'URL'; 80 | $labels['usedstorage'] = '중고 스토리지'; 81 | $labels['userdet'] = '사용자 세부 정보'; 82 | $labels['userinfo'] = '사용자 정보'; 83 | $labels['userid'] = '시스템 사용자 ID'; 84 | $labels['used'] = '사용됨'; 85 | $labels['webbrowser'] = '웹 브라우저'; 86 | $labels['webmail'] = '웹 메일'; 87 | $labels['webmailsystem'] = '웹 메일 시스템'; 88 | $labels['web_url'] = '웹 메일 URL'; 89 | $labels['web_url_alt'] = '웹메일에 액세스할 수 있는 URL'; 90 | $labels['openrelaylocal'] = '서버와 동일한 네트워크에 있을 때 전송 허용'; 91 | $labels['authrequired_local'] = '서버와 동일한 네트워크에 있는 경우를 제외하고 인증이 필요합니다'; 92 | $labels['authrequired_local_smtpafter'] = '서버와 동일한 네트워크에 있는 경우를 제외하고 인증 또는 %s가 필요합니다'; 93 | $labels['authrequired_smtpafter'] = '인증 또는 %s 필요'; 94 | $labels['smtpafterpop'] = 'POP 이후 SMTP'; 95 | $labels['smtpafterimap'] = 'IMAP 이후 SMTP'; 96 | $labels['smtpafterpopimap'] = 'POP/IMAP 이후 SMTP'; 97 | ?> 98 | -------------------------------------------------------------------------------- /localization/he_IL.inc: -------------------------------------------------------------------------------- 1 | 98 | -------------------------------------------------------------------------------- /localization/en_CA.inc: -------------------------------------------------------------------------------- 1 | 98 | -------------------------------------------------------------------------------- /localization/en_GB.inc: -------------------------------------------------------------------------------- 1 | 98 | -------------------------------------------------------------------------------- /localization/ar_SA.inc: -------------------------------------------------------------------------------- 1 | 98 | -------------------------------------------------------------------------------- /localization/ar.inc: -------------------------------------------------------------------------------- 1 | 98 | -------------------------------------------------------------------------------- /localization/id_ID.inc: -------------------------------------------------------------------------------- 1 | 98 | -------------------------------------------------------------------------------- /localization/et_EE.inc: -------------------------------------------------------------------------------- 1 | 98 | -------------------------------------------------------------------------------- /localization/nn_NO.inc: -------------------------------------------------------------------------------- 1 | 98 | -------------------------------------------------------------------------------- /localization/tr_TR.inc: -------------------------------------------------------------------------------- 1 | 98 | -------------------------------------------------------------------------------- /localization/nl_BE.inc: -------------------------------------------------------------------------------- 1 | 98 | -------------------------------------------------------------------------------- /localization/nl_NL.inc: -------------------------------------------------------------------------------- 1 | 98 | -------------------------------------------------------------------------------- /localization/da_DK.inc: -------------------------------------------------------------------------------- 1 | 98 | -------------------------------------------------------------------------------- /localization/fi_FI.inc: -------------------------------------------------------------------------------- 1 | 98 | -------------------------------------------------------------------------------- /localization/cs_CZ.inc: -------------------------------------------------------------------------------- 1 | 98 | -------------------------------------------------------------------------------- /localization/hu_HU.inc: -------------------------------------------------------------------------------- 1 | 98 | -------------------------------------------------------------------------------- /localization/sv_SE.inc: -------------------------------------------------------------------------------- 1 | 98 | -------------------------------------------------------------------------------- /localization/vi_VN.inc: -------------------------------------------------------------------------------- 1 | 98 | -------------------------------------------------------------------------------- /localization/nb_NO.inc: -------------------------------------------------------------------------------- 1 | 99 | -------------------------------------------------------------------------------- /localization/pt_BR.inc: -------------------------------------------------------------------------------- 1 | 98 | -------------------------------------------------------------------------------- /localization/pt_PT.inc: -------------------------------------------------------------------------------- 1 | 98 | -------------------------------------------------------------------------------- /localization/sk_SK.inc: -------------------------------------------------------------------------------- 1 | 98 | --------------------------------------------------------------------------------