Skip to content

Commit

Permalink
update port for non tls to 143
Browse files Browse the repository at this point in the history
  • Loading branch information
potts99 committed Dec 3, 2023
1 parent cf11420 commit 97ed644
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions apps/client/pages/admin/email-queues/new.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ export default function EmailQueues() {
const [username, setUsername] = useState();
const [password, setPassword] = useState();
const [hostname, setHostname] = useState();
const [port, setPort] = useState();
const [tls, setTls] = useState();

async function newQueue() {
Expand Down Expand Up @@ -108,6 +109,21 @@ export default function EmailQueues() {
onChange={(e) => setHostname(e.target.value)}
/>
</div>
<div>
<label
htmlFor="email"
className="block text-sm font-medium leading-6 text-gray-900"
>
Port
</label>
<input
type="text"
className="shadow-sm w-1/2 focus:ring-indigo-500 focus:border-indigo-500 block sm:text-sm border-gray-300 rounded-md"
placeholder="Enter first name here..."
name="name"
onChange={(e) => setPort(e.target.value)}
/>
</div>
<div>
<label
htmlFor="email"
Expand Down

0 comments on commit 97ed644

Please sign in to comment.