Bug 125710
Summary: | RFE: Patch: MS CBCP is not supported properly | ||
---|---|---|---|
Product: | [Fedora] Fedora | Reporter: | Jochen Wiedmann <jochen.wiedmann> |
Component: | system-config-network | Assignee: | Harald Hoyer <harald> |
Status: | CLOSED RAWHIDE | QA Contact: | |
Severity: | medium | Docs Contact: | |
Priority: | medium | ||
Version: | 2 | CC: | harald, laroche, than |
Target Milestone: | --- | Keywords: | FutureFeature |
Target Release: | --- | ||
Hardware: | i386 | ||
OS: | Linux | ||
Whiteboard: | |||
Fixed In Version: | 1.3.26 | Doc Type: | Enhancement |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2005-04-20 13:29:27 UTC | Type: | --- |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: | |||
Bug Depends On: | |||
Bug Blocks: | 122582, 125273, 136451 |
Description
Jochen Wiedmann
2004-06-10 14:06:55 UTC
i think the correct fix would be: [ "$CBCP" = "on" ] && options="$options callback $PHONE_IN" could you please try if it works for you? Thanks The solution suggested in Comment 3 would possibly work, but I believe it is based on some misunderstandment, either on my side or on yours. $PHONE_IN is, AFAIK, the remotes phone number that I am seeing, if the callback comes in. However, that is not what the "User Managed Callback" requires: It needs the phone number, that the remote side has to dial when calling back: My phone number. In other words, if anything at all, one might try [ "$CBCP" = "on" ] && options="$options callback $MSN" besides the problem, that the MSN will typically be incomplete (without the area number and country code). Besides, your suggestion will leave the user the choice between the "User managed callback" and no CBCP at all: It disables the possibility of the "Admin managed callback". (Which my solution does as well.) In other words, the best solution might probably be to replace [ "$CBCP" = "on" ] && options="$options callback 6" with if [ "$CBCP" = "on" ]; then # Do nothing, admin managed callback is enabled by default elif [ "$CBCP" = "off" ]; then # Disable CBCP options="$options -callback-cbcp" else # User managed callback options="$options callback $CBCP" fi ok, it's a misunderstandment, your solution seems the best ATM. it still needs to fix r-c-n to allow user to define the phone number there. reassign to s-c-n. |