|
Bugzilla – Full Text Bug Listing |
| Summary: | postfix cannot start up if ipV6 got disabled but address '::1' still remained in /etc/hosts | ||
|---|---|---|---|
| Product: | [openSUSE] openSUSE Tumbleweed | Reporter: | Zaoliang Luo <zluo> |
| Component: | Basesystem | Assignee: | Peter Varkoly <varkoly> |
| Status: | RESOLVED FIXED | QA Contact: | E-mail List <qa-bugs> |
| Severity: | Normal | ||
| Priority: | P5 - None | CC: | amajer, miika.alikirri |
| Version: | Current | ||
| Target Milestone: | --- | ||
| Hardware: | Other | ||
| OS: | Other | ||
| Whiteboard: | |||
| Found By: | --- | Services Priority: | |
| Business Priority: | Blocker: | --- | |
| Marketing QA Status: | --- | IT Deployment: | --- |
|
Description
Zaoliang Luo
2023-10-17 07:43:22 UTC
Hi! Is your postfix configured to only support ipv4? You can check it by running this: ``` # grep inet_protocols /etc/postfix/main.cf ``` If you see this, postfix is configured to use both ipv4 and ipv6: ``` inet_protocols = all ``` And you can fix it by changing the value to ipv4, like this: ``` inet_protocols = ipv4 ``` To be honest, this sounds like a postfix configuration issue and it's unrelated to cockpit. Re-assigning to postfix maintainer (In reply to Miika Alikirri from comment #1) > Hi! > > Is your postfix configured to only support ipv4? > > You can check it by running this: > ``` > # grep inet_protocols /etc/postfix/main.cf > ``` > > If you see this, postfix is configured to use both ipv4 and ipv6: > ``` > inet_protocols = all > ``` > > And you can fix it by changing the value to ipv4, like this: > ``` > inet_protocols = ipv4 > ``` I didn't realize this has to do with inet_protocols. So it will be nice to check network setting (ipv4/6) before starting postfix? Please feel free to close this report, thanks! ok |