#!/bin/bash

set -u

username="$1"; shift

/usr/bin/ssh \
  -i "/var/www/tufs-mail/etc/id_rsa" \
  -o "PasswordAuthentication no" \
  -o "KbdInteractiveAuthentication no" \
  -T \
  "$username@127.0.0.1" \
  "$@" \
;

