From 11817b9590ca14232ac425b497d0b07e713e6546 Mon Sep 17 00:00:00 2001 From: Troy McConaghy Date: Mon, 10 Dec 2018 18:10:58 +0100 Subject: [PATCH] Change email to devs@bigchaindb.com (#2612) * Change email to devs@bigchaindb.com * Update Travis build badge URL * Update some other email addresses --- CODE_OF_CONDUCT.md | 2 +- Dockerfile | 2 +- Dockerfile-all-in-one | 2 +- Dockerfile-alpine | 2 +- Dockerfile-dev | 2 +- README.md | 2 +- docs/server/source/k8s-deployment-template/easy-rsa.rst | 2 +- docs/upgrade-guides/v0.10-v1.0.md | 3 +-- k8s/bigchaindb/nginx_container/Dockerfile | 2 +- k8s/bigchaindb/tendermint_container/Dockerfile | 2 +- k8s/mongodb-monitoring-agent/container/Dockerfile | 2 +- k8s/mongodb/container/Dockerfile | 2 +- k8s/nginx-http/container/Dockerfile | 2 +- k8s/nginx-https/container/Dockerfile | 2 +- k8s/nginx-openresty/container/Dockerfile | 2 +- k8s/scripts/functions | 6 +++--- k8s/toolbox/Dockerfile | 2 +- pkg/configuration/roles/tendermint/files/Dockerfile | 2 +- setup.py | 2 +- 19 files changed, 21 insertions(+), 22 deletions(-) diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 39b1f2c1..bf65b900 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -41,7 +41,7 @@ This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Instances of abusive, harassing, or otherwise unacceptable behavior directed at yourself or another community member may be -reported by contacting a project maintainer at [conduct@bigchaindb.com](mailto:conduct@bigchaindb.com). All +reported by contacting a project maintainer at [contact@bigchaindb.com](mailto:contact@bigchaindb.com). All complaints will be reviewed and investigated and will result in a response that is appropriate to the circumstances. Maintainers are obligated to maintain confidentiality with regard to the reporter of an diff --git a/Dockerfile b/Dockerfile index 2fb0781e..10e4d83d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM python:3.6 -LABEL maintainer "dev@bigchaindb.com" +LABEL maintainer "devs@bigchaindb.com" RUN mkdir -p /usr/src/app COPY . /usr/src/app/ WORKDIR /usr/src/app diff --git a/Dockerfile-all-in-one b/Dockerfile-all-in-one index 0ccde6bb..9d3b1126 100644 --- a/Dockerfile-all-in-one +++ b/Dockerfile-all-in-one @@ -1,5 +1,5 @@ FROM alpine:latest -LABEL maintainer "dev@bigchaindb.com" +LABEL maintainer "devs@bigchaindb.com" ARG TM_VERSION=0.22.8 RUN mkdir -p /usr/src/app diff --git a/Dockerfile-alpine b/Dockerfile-alpine index 4ed7a492..58c59908 100644 --- a/Dockerfile-alpine +++ b/Dockerfile-alpine @@ -1,5 +1,5 @@ FROM alpine:latest -LABEL maintainer "dev@bigchaindb.com" +LABEL maintainer "devs@bigchaindb.com" RUN mkdir -p /usr/src/app COPY . /usr/src/app/ WORKDIR /usr/src/app diff --git a/Dockerfile-dev b/Dockerfile-dev index 9f5a4f43..0c55979c 100644 --- a/Dockerfile-dev +++ b/Dockerfile-dev @@ -1,6 +1,6 @@ ARG python_version=3.6 FROM python:${python_version} -LABEL maintainer "dev@bigchaindb.com" +LABEL maintainer "devs@bigchaindb.com" RUN apt-get update \ && apt-get install -y vim \ diff --git a/README.md b/README.md index 669eb435..999a632f 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ so show the latest GitHub release instead. [![Codecov branch](https://img.shields.io/codecov/c/github/bigchaindb/bigchaindb/master.svg)](https://codecov.io/github/bigchaindb/bigchaindb?branch=master) [![Latest release](https://img.shields.io/github/release/bigchaindb/bigchaindb/all.svg)](https://github.com/bigchaindb/bigchaindb/releases) [![Status on PyPI](https://img.shields.io/pypi/status/bigchaindb.svg)](https://pypi.org/project/BigchainDB/) -[![Travis branch](https://img.shields.io/travis/bigchaindb/bigchaindb/master.svg)](https://travis-ci.org/bigchaindb/bigchaindb) +[![Travis branch](https://img.shields.io/travis/bigchaindb/bigchaindb/master.svg)](https://travis-ci.com/bigchaindb/bigchaindb) [![Documentation Status](https://readthedocs.org/projects/bigchaindb-server/badge/?version=latest)](https://docs.bigchaindb.com/projects/server/en/latest/) [![Join the chat at https://gitter.im/bigchaindb/bigchaindb](https://badges.gitter.im/bigchaindb/bigchaindb.svg)](https://gitter.im/bigchaindb/bigchaindb?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) diff --git a/docs/server/source/k8s-deployment-template/easy-rsa.rst b/docs/server/source/k8s-deployment-template/easy-rsa.rst index f2f1554d..a0589a28 100644 --- a/docs/server/source/k8s-deployment-template/easy-rsa.rst +++ b/docs/server/source/k8s-deployment-template/easy-rsa.rst @@ -74,7 +74,7 @@ The comments in the file explain what each of the variables mean. echo 'set_var EASYRSA_REQ_CITY "Berlin"' >> vars echo 'set_var EASYRSA_REQ_ORG "BigchainDB GmbH"' >> vars echo 'set_var EASYRSA_REQ_OU "IT"' >> vars - echo 'set_var EASYRSA_REQ_EMAIL "dev@bigchaindb.com"' >> vars + echo 'set_var EASYRSA_REQ_EMAIL "devs@bigchaindb.com"' >> vars Note: Later, when building a CA or generating a certificate signing request, you will be prompted to enter a value for the OU (or to accept the default). You should change the default OU from ``IT`` to one of the following, as appropriate: ``ROOT-CA``, diff --git a/docs/upgrade-guides/v0.10-v1.0.md b/docs/upgrade-guides/v0.10-v1.0.md index 8bacca8e..eb9e04c2 100644 --- a/docs/upgrade-guides/v0.10-v1.0.md +++ b/docs/upgrade-guides/v0.10-v1.0.md @@ -111,8 +111,7 @@ including: If you don't find your preferred language in this list, do not despair but -reach out to us for help on Github/Gitter or product@bigchaindb.com. - +reach out to us for help on GitHub/Gitter or devs@bigchaindb.com. #### Revamp of Crypto-Conditions signing details diff --git a/k8s/bigchaindb/nginx_container/Dockerfile b/k8s/bigchaindb/nginx_container/Dockerfile index 9e3a1cf8..88b3e060 100644 --- a/k8s/bigchaindb/nginx_container/Dockerfile +++ b/k8s/bigchaindb/nginx_container/Dockerfile @@ -1,5 +1,5 @@ FROM nginx:stable -LABEL maintainer "dev@bigchaindb.com" +LABEL maintainer "devs@bigchaindb.com" WORKDIR / RUN apt-get update \ && apt-get -y upgrade \ diff --git a/k8s/bigchaindb/tendermint_container/Dockerfile b/k8s/bigchaindb/tendermint_container/Dockerfile index 1c66e38d..ba5f0998 100644 --- a/k8s/bigchaindb/tendermint_container/Dockerfile +++ b/k8s/bigchaindb/tendermint_container/Dockerfile @@ -1,5 +1,5 @@ FROM tendermint/tendermint:0.22.8 -LABEL maintainer "dev@bigchaindb.com" +LABEL maintainer "devs@bigchaindb.com" WORKDIR / USER root RUN apk --update add bash diff --git a/k8s/mongodb-monitoring-agent/container/Dockerfile b/k8s/mongodb-monitoring-agent/container/Dockerfile index d660b2ad..3e5e7637 100644 --- a/k8s/mongodb-monitoring-agent/container/Dockerfile +++ b/k8s/mongodb-monitoring-agent/container/Dockerfile @@ -7,7 +7,7 @@ # https://docs.cloudmanager.mongodb.com/tutorial/install-monitoring-agent-with-deb-package/ FROM ubuntu:xenial -LABEL maintainer "dev@bigchaindb.com" +LABEL maintainer "devs@bigchaindb.com" # Using ARG, one can set DEBIAN_FRONTEND=noninteractive and others # just for the duration of the build: ARG DEBIAN_FRONTEND=noninteractive diff --git a/k8s/mongodb/container/Dockerfile b/k8s/mongodb/container/Dockerfile index 8631134b..8c27153c 100644 --- a/k8s/mongodb/container/Dockerfile +++ b/k8s/mongodb/container/Dockerfile @@ -1,5 +1,5 @@ FROM mongo:3.6 -LABEL maintainer "dev@bigchaindb.com" +LABEL maintainer "devs@bigchaindb.com" WORKDIR / RUN apt-get update \ && apt-get -y upgrade \ diff --git a/k8s/nginx-http/container/Dockerfile b/k8s/nginx-http/container/Dockerfile index f0fad61b..3cc1e5bf 100644 --- a/k8s/nginx-http/container/Dockerfile +++ b/k8s/nginx-http/container/Dockerfile @@ -1,5 +1,5 @@ FROM nginx:stable -LABEL maintainer "dev@bigchaindb.com" +LABEL maintainer "devs@bigchaindb.com" WORKDIR / RUN apt-get update \ && apt-get -y upgrade \ diff --git a/k8s/nginx-https/container/Dockerfile b/k8s/nginx-https/container/Dockerfile index b2211ef9..4bc10478 100644 --- a/k8s/nginx-https/container/Dockerfile +++ b/k8s/nginx-https/container/Dockerfile @@ -1,5 +1,5 @@ FROM nginx:stable -LABEL maintainer "dev@bigchaindb.com" +LABEL maintainer "devs@bigchaindb.com" WORKDIR / RUN apt-get update \ && apt-get -y upgrade \ diff --git a/k8s/nginx-openresty/container/Dockerfile b/k8s/nginx-openresty/container/Dockerfile index da3bfc40..3286ce04 100644 --- a/k8s/nginx-openresty/container/Dockerfile +++ b/k8s/nginx-openresty/container/Dockerfile @@ -1,5 +1,5 @@ FROM openresty/openresty:xenial -LABEL maintainer "dev@bigchaindb.com" +LABEL maintainer "devs@bigchaindb.com" WORKDIR / RUN apt-get update \ && apt-get -y upgrade \ diff --git a/k8s/scripts/functions b/k8s/scripts/functions index c55bab1a..710c3f83 100755 --- a/k8s/scripts/functions +++ b/k8s/scripts/functions @@ -13,7 +13,7 @@ function configure_root_ca(){ echo 'set_var EASYRSA_REQ_CITY "Berlin"' >> $1/vars echo 'set_var EASYRSA_REQ_ORG "BigchainDB GmbH"' >> $1/vars echo 'set_var EASYRSA_REQ_OU "ROOT-CA"' >> $1/vars - echo 'set_var EASYRSA_REQ_EMAIL "dev@bigchaindb.com"' >> $1//vars + echo 'set_var EASYRSA_REQ_EMAIL "devs@bigchaindb.com"' >> $1//vars sed -i.bk '/^extendedKeyUsage/ s/$/,clientAuth/' $1/x509-types/server echo "set_var EASYRSA_SSL_CONF \"$1/openssl-1.0.cnf\"" >> $1/vars @@ -36,7 +36,7 @@ function configure_member_cert_gen(){ echo 'set_var EASYRSA_REQ_CITY "Berlin"' >> $1/vars echo 'set_var EASYRSA_REQ_ORG "BigchainDB GmbH"' >> $1/vars echo 'set_var EASYRSA_REQ_OU "MONGO-MEMBER"' >> $1/vars - echo 'set_var EASYRSA_REQ_EMAIL "dev@bigchaindb.com"' >> $1/vars + echo 'set_var EASYRSA_REQ_EMAIL "devs@bigchaindb.com"' >> $1/vars echo "set_var EASYRSA_SSL_CONF \"$1/openssl-1.0.cnf\"" >> $1/vars echo "set_var EASYRSA_PKI \"$1/pki\"" >> $1/vars $1/easyrsa init-pki @@ -55,7 +55,7 @@ function configure_client_cert_gen(){ echo 'set_var EASYRSA_REQ_CITY "Berlin"' >> $1/vars echo 'set_var EASYRSA_REQ_ORG "BigchainDB GmbH"' >> $1/vars echo 'set_var EASYRSA_REQ_OU "MONGO-CLIENT"' >> $1/vars - echo 'set_var EASYRSA_REQ_EMAIL "dev@bigchaindb.com"' >> $1/vars + echo 'set_var EASYRSA_REQ_EMAIL "devs@bigchaindb.com"' >> $1/vars echo "set_var EASYRSA_SSL_CONF \"$1/openssl-1.0.cnf\"" >> $1/vars echo "set_var EASYRSA_PKI \"$1/pki\"" >> $1/vars $1/easyrsa init-pki diff --git a/k8s/toolbox/Dockerfile b/k8s/toolbox/Dockerfile index 93f880d1..1baadbeb 100644 --- a/k8s/toolbox/Dockerfile +++ b/k8s/toolbox/Dockerfile @@ -4,7 +4,7 @@ # kubectl run -it toolbox --image bigchaindb/toolbox --restart=Never --rm FROM alpine:3.5 -LABEL maintainer "dev@bigchaindb.com" +LABEL maintainer "devs@bigchaindb.com" WORKDIR / RUN apk add --no-cache --update curl bind-tools python3-dev g++ \ libffi-dev make vim git nodejs openssl-dev \ diff --git a/pkg/configuration/roles/tendermint/files/Dockerfile b/pkg/configuration/roles/tendermint/files/Dockerfile index 8269a351..e877a0bf 100644 --- a/pkg/configuration/roles/tendermint/files/Dockerfile +++ b/pkg/configuration/roles/tendermint/files/Dockerfile @@ -1,6 +1,6 @@ ARG tm_version=0.22.8 FROM tendermint/tendermint:${tm_version} -LABEL maintainer "dev@bigchaindb.com" +LABEL maintainer "devs@bigchaindb.com" WORKDIR / USER root RUN apk --update add bash diff --git a/setup.py b/setup.py index 8b3d6d70..c94d7455 100644 --- a/setup.py +++ b/setup.py @@ -107,7 +107,7 @@ setup( ), url='https://github.com/BigchainDB/bigchaindb/', author='BigchainDB Contributors', - author_email='dev@bigchaindb.com', + author_email='devs@bigchaindb.com', license='Apache Software License 2.0', zip_safe=False, python_requires='>=3.6',