Skip to content

Commit f733bc1

Browse files
authored
V 1.0.2 (#7)
* V 1.0.2 * Fix account regexp (#6)
1 parent 81d03b7 commit f733bc1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

backend/dockerMailserver.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ async function getAccounts() {
9292
// Parse multiline output with regex to extract email and size information
9393
const accounts = [];
9494
const accountLineRegex =
95-
/\* ([\w\-\.@]+) \( ([\w\~]+) \/ ([\w\~]+) \) \[(\d+)%\](.*)$/;
95+
/\* ([\w\-\.@]+) \( ([\w\.\~]+) \/ ([\w\.\~]+) \) \[(\d+)%\](.*)$/;
9696

9797
// Process each line individually
9898
const lines = stdout.split('\n').filter((line) => line.trim().length > 0);

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "docker-mailserver-gui",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "[![Docker Pulls](https://img.shields.io/docker/pulls/dunajdev/docker-mailserver-gui)](https://hub.docker.com/r/dunajdev/docker-mailserver-gui)",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)