{"id":20049710,"url":"https://github.com/scriptkitties/ravenmail-webui","last_synced_at":"2026-02-25T11:09:09.638Z","repository":{"id":80058830,"uuid":"80362690","full_name":"scriptkitties/ravenmail-webui","owner":"scriptkitties","description":null,"archived":false,"fork":false,"pushed_at":"2017-03-05T22:04:41.000Z","size":884,"stargazers_count":4,"open_issues_count":1,"forks_count":1,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-09-20T11:50:37.147Z","etag":null,"topics":["frontend","laravel","mail","php","php7"],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/scriptkitties.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-01-29T18:13:07.000Z","updated_at":"2024-11-02T10:34:33.000Z","dependencies_parsed_at":null,"dependency_job_id":"3aef3ec6-7952-4805-ac3e-46abab28e552","html_url":"https://github.com/scriptkitties/ravenmail-webui","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/scriptkitties/ravenmail-webui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scriptkitties%2Fravenmail-webui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scriptkitties%2Fravenmail-webui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scriptkitties%2Fravenmail-webui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scriptkitties%2Fravenmail-webui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/scriptkitties","download_url":"https://codeload.github.com/scriptkitties/ravenmail-webui/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scriptkitties%2Fravenmail-webui/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29819265,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-25T05:36:42.804Z","status":"ssl_error","status_checked_at":"2026-02-25T05:36:31.934Z","response_time":61,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["frontend","laravel","mail","php","php7"],"created_at":"2024-11-13T11:51:57.750Z","updated_at":"2026-02-25T11:09:09.609Z","avatar_url":"https://github.com/scriptkitties.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# tyil.email frontend\nThis is the frontend to manage all the domains on tyil.email. It is made to be\nused in conjunction with the [FreeBSD email server tutorial][email-tutorial].\n\n## Installation\n### PHP\n```\npkg install \\\n\tphp70 \\\n\tphp70-ctype \\\n\tphp70-dom \\\n\tphp70-filter \\\n\tphp70-hash \\\n\tphp70-json \\\n\tphp70-mbstring \\\n\tphp70-mcrypt \\\n\tphp70-openssl \\\n\tphp70-phar \\\n\tphp70-session\n```\n\nIf you followed the [tutorial to set up the email server][email-tutorial],\n`php70-pdo_pgsql` will not install by default, so you will need to compile the\nport instead:\n\n```\ncd /usr/ports/databases/php70-pdo_pgsql\nmake install clean\n```\n\nDo not forget to enable php-fpm and start it:\n\n```\necho 'php_fpm_enable=\"YES\"' \u003e\u003e /etc/rc.conf.local\nservice php-fpm start\n```\n\n### Nginx\nNext up you can configure [nginx][nginx] to host the website. Add the following\ncontent to `/usr/local/etc/nginx/sites/frontend.conf`:\n\n```\n# redirects\nserver {\n\t# listeners\n\tlisten      80;\n\tserver_name domain.tld *.domain.tld;\n\n\t# redirects\n\treturn 301 https://$host$request_uri;\n}\n\nserver {\n\t# listeners\n\tlisten      443 ssl;\n\tserver_name domain.tld;\n\n\t# redirect\n\treturn 301 https://www.domain.tld$request_uri;\n\n\t# headers\n\tadd_header Strict-Transport-Security \"max-age=31536000; includeSubdomains; preload\";\n\n\t# keys\n\tssl_certificate      /usr/local/etc/letsencrypt/live/domain.tld/fullchain.pem;\n\tssl_certificate_key  /usr/local/etc/letsencrypt/live/domain.tld/privkey.pem;\n}\n\n\n# HTTPS\nserver {\n\t# listeners\n\tlisten       443 ssl;\n\tserver_name  www.domain.tld;\n\n\t# site path\n\troot  /srv/www/frontend/public;\n\tindex index.php;\n\n\t# / handler\n\tlocation / {\n\t\ttry_files $uri $uri/ =404;\n\t}\n\n\t# .php handler\n\tlocation ~ \\.php$ {\n\t\ttry_files      $uri /index.php =404;\n\t\tfastcgi_pass   127.1:9000;\n\t\tfastcgi_index  index.php;\n\t\tfastcgi_param  SCRIPT_FILENAME $document_root$fastcgi_script_name;\n\t\tinclude        fastcgi_params;\n\t}\n\n\t# enable HSTS\n\tadd_header  Strict-Transport-Security \"max-age=31536000; includeSubdomains; preload\";\n\n\t# keys\n\tssl_certificate      /usr/local/etc/letsencrypt/live/domain.tld/fullchain.pem;\n\tssl_certificate_key  /usr/local/etc/letsencrypt/live/domain.tld/privkey.pem;\n}\n```\n\nOnce the configuration file has been written you can reload nginx for the new configuration.\n\n```\nservice nginx reload\n```\n\n### Application\nIf you do not have [Composer][composer] yet, set this up now. Afterwards, clone\nthis repository and install all php dependencies from [Laravel][laravel]:\n\n```\nmkdir -p /srv/www\ngit clone https://c.darenet.org/tyil/website-mail.git /srv/www/frontend\ncd $_\ncomposer install\nchown -R www:www .\n```\n\n---\n\n[![Build Status](https://travis-ci.org/scriptkitties/ravenmail-webui.svg?branch=master)](https://travis-ci.org/scriptkitties/ravenmail-webui)\n[![Code Climate](https://codeclimate.com/github/scriptkitties/ravenmail-webui/badges/gpa.svg)](https://codeclimate.com/github/scriptkitties/ravenmail-webui)\n\n[email-tutorial]: https://www.tyil.work/tutorials/setup-imap-mailserver-on-freebsd.html\n[laravel]: https://www.laravel.com/\n[composer]: https://getcomposer.org/\n[nginx]: http://nginx.com/\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscriptkitties%2Fravenmail-webui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fscriptkitties%2Fravenmail-webui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscriptkitties%2Fravenmail-webui/lists"}