{"id":16653640,"url":"https://github.com/norm/config-pubstandards","last_synced_at":"2026-02-10T01:02:21.666Z","repository":{"id":1243152,"uuid":"1181505","full_name":"norm/config-pubstandards","owner":"norm","description":null,"archived":false,"fork":false,"pushed_at":"2010-12-20T00:18:43.000Z","size":100,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-12T17:49:52.203Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":null,"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/norm.png","metadata":{"files":{"readme":"README.markdown","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}},"created_at":"2010-12-19T10:16:04.000Z","updated_at":"2021-04-04T08:30:41.000Z","dependencies_parsed_at":"2022-08-16T12:40:46.801Z","dependency_job_id":null,"html_url":"https://github.com/norm/config-pubstandards","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/norm/config-pubstandards","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/norm%2Fconfig-pubstandards","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/norm%2Fconfig-pubstandards/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/norm%2Fconfig-pubstandards/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/norm%2Fconfig-pubstandards/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/norm","download_url":"https://codeload.github.com/norm/config-pubstandards/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/norm%2Fconfig-pubstandards/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267731106,"owners_count":24135669,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-29T02:00:12.549Z","response_time":2574,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2024-10-12T09:46:14.832Z","updated_at":"2026-02-10T01:02:21.538Z","avatar_url":"https://github.com/norm.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"pubstandards.com configuration\n==============================\n\nThese are the config files required to run the pubstandards.com email/website\nserver.\n\n\nInstallation\n------------\nInstructions assume a stock Ubuntu 10.10 Maverick box.\n\n1. Install exim as the MTA, mailman for lists and dovecot for IMAP and \n   SMTP AUTH.\n\n        # pre-requisites\n        sudo adduser --system --home /var/exim --group exim\n        sudo apt-get -y install openssl libssl-dev \\\n            libpcre3-dev libdb4.7-dev dovecot-imapd \\\n            mailman listadmin\n        \n        # build exim from source, not apt\n        cd /var/build\n        wget http://ftp.exim.org/pub/exim/exim4/exim-4.72.tar.gz\n        tar zxf exim-4.72.tar.gz\n        cd exim-4.72\n        cp src/EDITME Local/Makefile\n        perl -i.bak -pe '\n            s{^BIN_DIRECTORY.*}{BIN_DIRECTORY=/usr/local/bin};\n            s{^CONFIGURE_FILE.*}{CONFIGURE_FILE=/etc/exim/configure};\n            s{^EXIM_USER.*}{EXIM_USER=exim};\n            s{^# EXIM_GROUP.*}{EXIM_GROUP=exim};\n            s{^SPOOL_DIRECTORY.*}{SPOOL_DIRECTORY=/var/exim/spool};\n            s{^# SUPPORT_MAILDIR.*}{SUPPORT_MAILDIR=yes};\n            s{^EXIM_MONITOR.*}{# EXIM_MONITOR};\n            s{^# AUTH_DOVECOT.*}{AUTH_DOVECOT=yes};\n            s{^# SUPPORT_TLS.*}{SUPPORT_TLS=yes};\n            s{^# TLS_LIBS=-lssl.*}{TLS_LIBS=-lssl -lcrypto};\n            s{^# LOG_FILE_PATH=/var.*}{LOG_FILE_PATH=/var/log/exim/%s};\n            s{^SYSTEM_ALIASES_FILE.*}{SYSTEM_ALIASES_FILE=/etc/exim/aliases};\n        ' Local/Makefile\n        make\n        sudo make install\n\n2. Install couchdb.\n\n        sudo apt-get -y build-dep couchdb\n        sudo apt-get -y install libicu-dev libcurl4-gnutls-dev \\\n            libtool xulrunner-dev\n        wget http://www.mirrorservice.org/sites/ftp.apache.org//couchdb/1.0.1/apache-couchdb-1.0.1.tar.gz\n        tar zxf apache-couchdb-1.0.1.tar.gz\n        cd apache-couchdb-1.0.1\n        xulrunner=$(echo /usr/lib/xulrunner-devel-*)\n        ./configure --prefix= \\\n            --with-js-lib=${xulrunner}/lib \\\n            --with-js-include=${xulrunner}/include\n        make\n        sudo make install\n        useradd -d /var/lib/couchdb couchdb\n        chown -R couchdb: /var/lib/couchdb /var/log/couchdb\n        chown -R root:couchdb /etc/couchdb\n        chmod 664 /etc/couchdb/*.ini\n        chmod 775 /etc/couchdb/*.d\n        /etc/init.d/couchdb start\n        update-rc.d couchdb defaults\n        ls -d /usr/lib/xulrunner*.* \u003e /etc/ld.so.conf.d/xulrunner.conf\n        /sbin/ldconfig\n\n3. Install nginx for front-end proxying, mini_httpd for mailman CGI \n   and Plack/Starman for the pubstandards.com site.\n\n        sudo apt-get -y install nginx\n        wget http://www.acme.com/software/mini_httpd/mini_httpd-1.19.tar.gz\n        tar zxf mini_httpd-1.19.tar.gz\n        cd mini_httpd-1.19\n        curl https://gist.github.com/raw/747788/7d050734e8f606ccb878dc03d79cc47798f1f959/mini_httpd.patch | patch\n        make\n        sudo make install\n\n\nStill TODO\n----------\n* document Plack/Starman\n* checking out config and website from github\n* init.d scripts for mini_httpd and plack\n* crontabs for updating the site information from Flickr/Upcoming\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnorm%2Fconfig-pubstandards","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnorm%2Fconfig-pubstandards","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnorm%2Fconfig-pubstandards/lists"}